Пример #1
0
<?php

/**
 * header.php
 * Template for header content.
 */
?>
<!DOCTYPE html>
<?php 
$options = keel_get_theme_options();
?>
<html <?php 
language_attributes();
?>
 class="<?php 
echo $options['typeface'];
?>
">

	<head>
		<meta charset="<?php 
bloginfo('charset');
?>
">
		<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
		<title><?php 
wp_title('|', true, 'right');
?>
</title>
		<?php 
if (is_home()) {
Пример #2
0
function keel_settings_field_footer_content_2()
{
    $options = keel_get_theme_options();
    ?>
		<?php 
    wp_editor(stripslashes($options['footer2']), 'footer2', array('autop' => false, 'textarea_name' => 'keel_theme_options[footer2]', 'textarea_rows' => 8));
    ?>
		<label class="description" for="footer1"><?php 
    _e('Content to show in the second footer area (ex. Copyright info, contact info, and so on)', 'keel');
    ?>
</label>
		<?php 
}