2010-03-29 18:03:15 -04:00
< ? php
/**
* The Header for our theme .
*
* Displays all of the < head > section and everything up till < div id = " main " >
*
* @ package WordPress
2010-05-16 13:10:21 -04:00
* @ subpackage Twenty_Ten
2010-05-17 02:36:11 -04:00
* @ since Twenty Ten 1.0
2010-03-29 18:03:15 -04:00
*/
2010-05-17 02:36:11 -04:00
?> <!DOCTYPE html>
2010-02-07 11:16:26 -05:00
< html < ? php language_attributes (); ?> >
< head >
2010-06-10 14:26:53 -04:00
< meta charset = " <?php bloginfo( 'charset' ); ?> " />
< title >< ? php
/*
* Print the < title > tag based on what is being viewed .
*/
2010-07-12 15:40:21 -04:00
global $page , $paged ;
2010-06-10 14:26:53 -04:00
wp_title ( '|' , true , 'right' );
2010-07-12 15:40:21 -04:00
// Add the blog name.
bloginfo ( 'name' );
// Add the blog description for the home/front page.
$site_description = get_bloginfo ( 'description' , 'display' );
if ( $site_description && ( is_home () || is_front_page () ) )
echo " | $site_description " ;
// Add a page number if necessary:
if ( $paged >= 2 || $page >= 2 )
echo ' | ' . sprintf ( __ ( 'Page %s' , 'twentyten' ), max ( $paged , $page ) );
2010-06-10 14:26:53 -04:00
?> </title>
< link rel = " profile " href = " http://gmpg.org/xfn/11 " />
< link rel = " stylesheet " type = " text/css " media = " all " href = " <?php bloginfo( 'stylesheet_url' ); ?> " />
< link rel = " pingback " href = " <?php bloginfo( 'pingback_url' ); ?> " />
2010-05-21 14:56:27 -04:00
< ? php
/* We add some JavaScript to pages with the comment form
* to support sites with threaded comments ( when in use ) .
*/
if ( is_singular () && get_option ( 'thread_comments' ) )
wp_enqueue_script ( 'comment-reply' );
/* Always have wp_head () just before the closing </ head >
* 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 ();
?>
2010-02-07 11:16:26 -05:00
</ head >
< body < ? php body_class (); ?> >
< div id = " wrapper " class = " hfeed " >
< div id = " header " >
< div id = " masthead " >
2010-05-10 17:10:12 -04:00
< div id = " branding " role = " banner " >
2010-05-17 02:36:11 -04:00
< ? php $heading_tag = ( is_home () || is_front_page () ) ? 'h1' : 'div' ; ?>
2010-05-10 02:04:14 -04:00
<< ? php echo $heading_tag ; ?> id="site-title">
< span >
< a href = " <?php echo home_url( '/' ); ?> " title = " <?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?> " rel = " home " >< ? php bloginfo ( 'name' ); ?> </a>
</ span >
2010-05-17 02:36:11 -04:00
</< ? php echo $heading_tag ; ?> >
2010-02-13 20:00:22 -05:00
< div id = " site-description " >< ? php bloginfo ( 'description' ); ?> </div>
2010-02-08 13:02:23 -05:00
2010-02-07 11:16:26 -05:00
< ? php
2012-06-04 10:43:19 -04:00
// 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 ;
}
2010-03-26 21:59:46 -04:00
// Check if this is a post or page, if it has a thumbnail, and if it's a big one
2011-01-14 14:16:21 -05:00
if ( is_singular () && current_theme_supports ( 'post-thumbnails' ) &&
2010-04-04 22:58:39 -04:00
has_post_thumbnail ( $post -> ID ) &&
2010-05-10 02:04:14 -04:00
( /* $src, $width, $height */ $image = wp_get_attachment_image_src ( get_post_thumbnail_id ( $post -> ID ), 'post-thumbnail' ) ) &&
2012-06-04 10:43:19 -04:00
$image [ 1 ] >= $header_image_width ) :
2010-03-26 21:59:46 -04:00
// Houston, we have a new header image!
2010-11-17 12:33:08 -05:00
echo get_the_post_thumbnail ( $post -> ID );
2012-06-04 10:43:19 -04:00
elseif ( get_header_image () ) :
// Compatibility with versions of WordPress prior to 3.4.
2012-04-15 16:51:24 -04:00
if ( function_exists ( 'get_custom_header' ) ) {
2012-06-04 10:43:19 -04:00
$header_image_width = get_custom_header () -> width ;
$header_image_height = get_custom_header () -> height ;
2012-04-15 16:51:24 -04:00
} else {
2012-06-04 10:43:19 -04:00
$header_image_width = HEADER_IMAGE_WIDTH ;
$header_image_height = HEADER_IMAGE_HEIGHT ;
2012-04-15 16:51:24 -04:00
}
2012-06-04 10:43:19 -04:00
?>
< img src = " <?php header_image(); ?> " width = " <?php echo $header_image_width ; ?> " height = " <?php echo $header_image_height ; ?> " alt = " " />
2010-03-26 21:59:46 -04:00
< ? php endif ; ?>
2010-02-07 11:16:26 -05:00
</ div ><!-- #branding -->
2010-02-08 13:02:23 -05:00
2010-05-10 17:10:12 -04:00
< div id = " access " role = " navigation " >
2011-12-16 12:13:16 -05:00
< ? php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>
2010-02-13 20:00:22 -05:00
< div class = " skip-link screen-reader-text " >< a href = " #content " title = " <?php esc_attr_e( 'Skip to content', 'twentyten' ); ?> " >< ? php _e ( 'Skip to content' , 'twentyten' ); ?> </a></div>
2011-12-16 12:13:16 -05:00
< ? php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?>
2010-05-31 17:13:24 -04:00
< ? php wp_nav_menu ( array ( 'container_class' => 'menu-header' , 'theme_location' => 'primary' ) ); ?>
2010-02-07 11:16:26 -05:00
</ div ><!-- #access -->
2010-02-08 13:02:23 -05:00
</ div ><!-- #masthead -->
2010-02-07 11:16:26 -05:00
</ div ><!-- #header -->
2010-02-08 13:02:23 -05:00
2010-02-07 11:16:26 -05:00
< div id = " main " >