'Sidebar Widget Area', 'id' => 'sidebar-widget-area', 'description' => 'The sidebar widget area', 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '

    ', 'after_title' => '

    ', )); } add_action('widgets_init', 'SunnyBlueSky_sidebar'); function SunnyBlueSky_nav_menus() { register_nav_menus( array( 'primary' => 'Header Menu' ) ); } add_action('init', 'SunnyBlueSky_nav_menus'); //Multi-level pages menu function SunnyBlueSky_page_menu() { if (is_page()) { $highlight = "page_item"; } else {$highlight = "menu-item current-menu-item"; } echo ''; } add_editor_style(); add_theme_support('automatic-feed-links'); add_theme_support('post-thumbnails'); set_post_thumbnail_size( 110, 110, true ); // Default size // Make theme available for translation BETA // Translations in a /languages/ directory //load_theme_textdomain('SunnyBlueSky', get_template_directory() . '/languages'); //password protections page change function SunnyBlueSky_the_password_form() { global $post; $label = 'pwbox-'.(empty($post->ID) ? rand() : $post->ID); $output = '
    '. '

    My post is password protected. Please ask me for a password:

    Password

    '; return $output; } add_filter('the_password_form', 'SunnyBlueSky_the_password_form'); ?>