2011-04-20 23:46:33 +02:00
< ? php
/**
2013-09-25 18:50:11 +02:00
* Header template for the theme
2011-05-02 23:04:44 +02:00
*
2013-09-25 18:50:11 +02:00
* Displays all of the < head > section and everything up till < div id = " main " >.
2011-05-02 23:04:44 +02:00
*
2011-04-20 23:46:33 +02:00
* @ package WordPress
2011-05-18 21:06:09 +02:00
* @ subpackage Twenty_Eleven
2011-05-02 23:04:44 +02:00
* @ since Twenty Eleven 1.0
2011-04-20 23:46:33 +02:00
*/
?> <!DOCTYPE html>
2011-04-26 20:54:03 +02:00
<!-- [ if IE 6 ] >
< html id = " ie6 " < ? php language_attributes (); ?> >
<! [ endif ] -->
2011-04-20 23:46:33 +02:00
<!-- [ if IE 7 ] >
< html id = " ie7 " < ? php language_attributes (); ?> >
<! [ endif ] -->
2011-04-26 20:54:03 +02:00
<!-- [ if IE 8 ] >
< html id = " ie8 " < ? php language_attributes (); ?> >
<! [ endif ] -->
2014-05-07 06:27:15 +02:00
<!-- [ if ! ( IE 6 ) & ! ( IE 7 ) & ! ( IE 8 )] ><!-->
2011-04-20 23:46:33 +02:00
< html < ? php language_attributes (); ?> >
<!--<! [ endif ] -->
< head >
< meta charset = " <?php bloginfo( 'charset' ); ?> " />
< meta name = " viewport " content = " width=device-width " />
2017-12-01 00:11:00 +01:00
< title >
< ? php
2013-10-09 22:39:09 +02:00
// Print the <title> tag based on what is being viewed.
2013-03-22 17:15:24 +01:00
global $page , $paged ;
wp_title ( '|' , true , 'right' );
// Add the blog name.
bloginfo ( 'name' );
// Add the blog description for the home/front page.
$site_description = get_bloginfo ( 'description' , 'display' );
2017-12-01 00:11:00 +01:00
if ( $site_description && ( is_home () || is_front_page () ) ) {
echo " | $site_description " ;
}
2013-03-22 17:15:24 +01:00
// Add a page number if necessary:
2017-12-01 00:11:00 +01:00
if ( ( $paged >= 2 || $page >= 2 ) && ! is_404 () ) {
2019-07-05 10:04:57 +02:00
/* translators: %s: page number */
2017-12-01 00:11:00 +01:00
echo esc_html ( ' | ' . sprintf ( __ ( 'Page %s' , 'twentyeleven' ), max ( $paged , $page ) ) );
}
2013-03-22 17:15:24 +01:00
2018-08-17 03:51:36 +02:00
?>
2017-12-01 00:11:00 +01:00
</ title >
2011-04-20 23:46:33 +02:00
< link rel = " profile " href = " http://gmpg.org/xfn/11 " />
2019-04-16 20:22:52 +02:00
< link rel = " stylesheet " type = " text/css " media = " all " href = " <?php bloginfo( 'stylesheet_url' ); ?> " />
2019-01-09 07:11:51 +01:00
< link rel = " pingback " href = " <?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?> " >
2011-04-20 23:46:33 +02:00
<!-- [ if lt IE 9 ] >
2011-04-21 09:28:08 +02:00
< script src = " <?php echo get_template_directory_uri(); ?>/js/html5.js " type = " text/javascript " ></ script >
2011-04-20 23:46:33 +02:00
<! [ endif ] -->
2011-05-05 00:54:50 +02:00
< ? php
2013-10-09 22:39:09 +02:00
/*
2013-09-25 18:50:11 +02:00
* We add some JavaScript to pages with the comment form
2013-03-22 17:15:24 +01:00
* to support sites with threaded comments ( when in use ) .
*/
2017-12-01 00:11:00 +01:00
if ( is_singular () && get_option ( 'thread_comments' ) ) {
wp_enqueue_script ( 'comment-reply' );
}
2013-03-22 17:15:24 +01:00
2013-10-09 22:39:09 +02:00
/*
2013-09-25 18:50:11 +02:00
* Always have wp_head () just before the closing </ head >
2011-05-05 00:54:50 +02:00
* tag of your theme , or you will break many plugins , which
* generally use this hook to add elements to < head > such
* as styles , scripts , and meta tags .
*/
wp_head ();
?>
2011-04-20 23:46:33 +02:00
</ head >
< body < ? php body_class (); ?> >
Bundled Theme: trigger a new `wp_body_open` action immediately after the opening `body` tag.
* Enables inserting (asynchronous) JavaScript right after the opening `body` tag.
* Add a `wp_body_open` helper function that triggers the `wp_body_open` action.
* Call `wp_body_open` in core themes immediately after the opening `body` tag.
Props joostdevalk, valendesigns, nacin, saracup, jorbin, mikeschinkel, jonnybojangles, lgedeon, Willscrlt, Denis-de-Bernardy, lexiqueen, sky_76, welcher, westonruter, ramiy, joyously.
Fixes #12563.
Built from https://develop.svn.wordpress.org/trunk@45042
git-svn-id: http://core.svn.wordpress.org/trunk@44851 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-27 22:59:52 +01:00
< ? php wp_body_open (); ?>
2011-04-20 23:46:33 +02:00
< div id = " page " class = " hfeed " >
< header id = " branding " role = " banner " >
< hgroup >
2014-03-17 22:50:14 +01:00
< h1 id = " site-title " >< span >< a href = " <?php echo esc_url( home_url( '/' ) ); ?> " rel = " home " >< ? php bloginfo ( 'name' ); ?> </a></span></h1>
2011-04-20 23:46:33 +02:00
< h2 id = " site-description " >< ? php bloginfo ( 'description' ); ?> </h2>
</ hgroup >
2011-04-26 20:34:52 +02:00
2011-04-20 23:46:33 +02:00
< ? php
// Check to see if the header image has been removed
2011-04-30 00:22:19 +02:00
$header_image = get_header_image ();
2017-12-01 00:11:00 +01:00
if ( $header_image ) :
// Compatibility with versions of WordPress prior to 3.4.
if ( function_exists ( 'get_custom_header' ) ) {
/*
* We need to figure out what the minimum width should be for our featured image .
* This result would be the suggested width if the theme were to implement flexible widths .
*/
$header_image_width = get_theme_support ( 'custom-header' , 'width' );
} else {
$header_image_width = HEADER_IMAGE_WIDTH ;
}
?>
< a href = " <?php echo esc_url( home_url( '/' ) ); ?> " >
< ? php
/*
* The header image .
* Check if this is a post or page , if it has a thumbnail , and if it ' s a big one
*/
2019-07-01 10:23:57 +02:00
if ( is_singular () && has_post_thumbnail ( $post -> ID ) ) {
$image = wp_get_attachment_image_src ( get_post_thumbnail_id ( $post -> ID ), array ( $header_image_width , $header_image_width ) );
if ( $image && $image [ 1 ] >= $header_image_width ) {
// Houston, we have a new header image!
echo get_the_post_thumbnail ( $post -> ID , 'post-thumbnail' );
}
} else {
2012-06-04 16:43:19 +02:00
// Compatibility with versions of WordPress prior to 3.4.
if ( function_exists ( 'get_custom_header' ) ) {
2017-12-01 00:11:00 +01:00
$header_image_width = get_custom_header () -> width ;
$header_image_height = get_custom_header () -> height ;
2012-06-04 16:43:19 +02:00
} else {
2017-12-01 00:11:00 +01:00
$header_image_width = HEADER_IMAGE_WIDTH ;
$header_image_height = HEADER_IMAGE_HEIGHT ;
2012-06-04 16:43:19 +02:00
}
?>
2015-01-22 01:42:23 +01:00
< img src = " <?php header_image(); ?> " width = " <?php echo esc_attr( $header_image_width ); ?> " height = " <?php echo esc_attr( $header_image_height ); ?> " alt = " <?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?> " />
2019-07-01 10:23:57 +02:00
< ? php
} // end check for featured image or standard header
?>
2011-04-20 23:46:33 +02:00
</ a >
< ? php endif ; // end check for removed header image ?>
< ? php
// Has the text been hidden?
2017-12-01 00:11:00 +01:00
if ( 'blank' == get_header_textcolor () ) :
$header_image_class = '' ;
if ( $header_image ) {
$header_image_class = ' with-image' ;
}
2018-08-17 03:51:36 +02:00
?>
2017-12-01 00:11:00 +01:00
< div class = " only-search<?php echo $header_image_class ; ?> " >
2018-08-17 03:51:36 +02:00
< ? php get_search_form (); ?>
2017-12-01 00:11:00 +01:00
</ div >
2018-08-17 03:51:36 +02:00
< ? php
2011-04-20 23:46:33 +02:00
else :
2018-08-17 03:51:36 +02:00
?>
< ? php get_search_form (); ?>
2011-04-20 23:46:33 +02:00
< ? php endif ; ?>
< nav id = " access " role = " navigation " >
2011-06-24 01:03:46 +02:00
< h3 class = " assistive-text " >< ? php _e ( 'Main menu' , 'twentyeleven' ); ?> </h3>
2011-12-16 18:13:16 +01:00
< ? php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?>
2014-03-17 22:50:14 +01:00
< div class = " skip-link " >< a class = " assistive-text " href = " #content " >< ? php _e ( 'Skip to primary content' , 'twentyeleven' ); ?> </a></div>
< ? php if ( ! is_singular () ) : ?>
< div class = " skip-link " >< a class = " assistive-text " href = " #secondary " >< ? php _e ( 'Skip to secondary content' , 'twentyeleven' ); ?> </a></div>
< ? php endif ; ?>
2012-04-14 21:02:04 +02:00
< ? php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assigned to the primary location is the one used. If one isn't assigned, the menu with the lowest ID is used. */ ?>
2011-04-20 23:46:33 +02:00
< ? php wp_nav_menu ( array ( 'theme_location' => 'primary' ) ); ?>
</ nav ><!-- #access -->
</ header ><!-- #branding -->
2011-12-16 18:13:16 +01:00
< div id = " main " >