2010-03-30 00:03:15 +02: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 19:10:21 +02:00
* @ subpackage Twenty_Ten
2010-05-17 08:36:11 +02:00
* @ since Twenty Ten 1.0
2010-03-30 00:03:15 +02:00
*/
2010-05-17 08:36:11 +02:00
?> <!DOCTYPE html>
2010-02-07 17:16:26 +01:00
< html < ? php language_attributes (); ?> >
< head >
2010-03-16 21:17:22 +01:00
< meta charset = " <?php bloginfo( 'charset' ); ?> " />
2010-05-10 22:30:58 +02:00
< title >
2010-05-21 20:56:27 +02:00
< ? php // Returns the title based on what is being viewed
if ( is_single () ) { // single posts
2010-03-16 21:17:22 +01:00
single_post_title (); echo ' | ' ; bloginfo ( 'name' );
2010-05-21 20:56:27 +02:00
// The home page or, if using a static front page, the blog posts page.
2010-02-13 14:35:03 +01:00
} elseif ( is_home () || is_front_page () ) {
2010-05-21 20:56:27 +02:00
bloginfo ( 'name' );
if ( get_bloginfo ( 'description' ) )
echo ' | ' ; bloginfo ( 'description' );
2010-04-28 19:11:18 +02:00
twentyten_the_page_number ();
2010-05-21 20:56:27 +02:00
} elseif ( is_page () ) { // WordPress Pages
2010-03-16 21:17:22 +01:00
single_post_title ( '' ); echo ' | ' ; bloginfo ( 'name' );
2010-05-21 20:56:27 +02:00
} elseif ( is_search () ) { // Search results
2010-05-10 22:30:58 +02:00
printf ( __ ( 'Search results for %s' , 'twentyten' ), '"' . get_search_query () . '"' ); twentyten_the_page_number (); echo ' | ' ; bloginfo ( 'name' );
2010-05-21 20:56:27 +02:00
} elseif ( is_404 () ) { // 404 (Not Found)
2010-03-16 21:17:22 +01:00
_e ( 'Not Found' , 'twentyten' ); echo ' | ' ; bloginfo ( 'name' );
2010-05-21 20:56:27 +02:00
} else { // Otherwise:
2010-03-16 21:17:22 +01:00
wp_title ( '' ); echo ' | ' ; bloginfo ( 'name' ); twentyten_the_page_number ();
2010-02-13 14:35:03 +01:00
}
2010-05-10 22:30:58 +02:00
?>
</ title >
2010-02-12 05:48:24 +01:00
< link rel = " profile " href = " http://gmpg.org/xfn/11 " />
2010-03-16 21:17:22 +01:00
< link rel = " stylesheet " type = " text/css " media = " all " href = " <?php bloginfo( 'stylesheet_url' ); ?> " />
2010-02-14 02:00:22 +01:00
< link rel = " pingback " href = " <?php bloginfo( 'pingback_url' ); ?> " />
2010-05-21 20:56:27 +02: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 17:16:26 +01:00
</ head >
< body < ? php body_class (); ?> >
< div id = " wrapper " class = " hfeed " >
< div id = " header " >
< div id = " masthead " >
2010-05-10 23:10:12 +02:00
< div id = " branding " role = " banner " >
2010-05-17 08:36:11 +02:00
< ? php $heading_tag = ( is_home () || is_front_page () ) ? 'h1' : 'div' ; ?>
2010-05-10 08:04:14 +02: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 08:36:11 +02:00
</< ? php echo $heading_tag ; ?> >
2010-02-14 02:00:22 +01:00
< div id = " site-description " >< ? php bloginfo ( 'description' ); ?> </div>
2010-02-08 19:02:23 +01:00
2010-02-07 17:16:26 +01:00
< ? php
2010-03-27 02:59:46 +01:00
// Check if this is a post or page, if it has a thumbnail, and if it's a big one
2010-05-04 09:01:09 +02:00
if ( is_singular () &&
2010-04-05 04:58:39 +02:00
has_post_thumbnail ( $post -> ID ) &&
2010-05-10 08:04:14 +02:00
( /* $src, $width, $height */ $image = wp_get_attachment_image_src ( get_post_thumbnail_id ( $post -> ID ), 'post-thumbnail' ) ) &&
2010-04-05 04:58:39 +02:00
$image [ 1 ] >= HEADER_IMAGE_WIDTH ) :
2010-03-27 02:59:46 +01:00
// Houston, we have a new header image!
echo get_the_post_thumbnail ( $post -> ID , 'post-thumbnail' );
else : ?>
< img src = " <?php header_image(); ?> " width = " <?php echo HEADER_IMAGE_WIDTH; ?> " height = " <?php echo HEADER_IMAGE_HEIGHT; ?> " alt = " " />
< ? php endif ; ?>
2010-02-07 17:16:26 +01:00
</ div ><!-- #branding -->
2010-02-08 19:02:23 +01:00
2010-05-10 23:10:12 +02:00
< div id = " access " role = " navigation " >
2010-05-21 20:56:27 +02:00
< ? php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>
2010-02-14 02:00:22 +01: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>
2010-05-21 20:56:27 +02: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-14 08:20:30 +02:00
< ? php wp_nav_menu ( array ( 'sort_column' => 'menu_order' , 'container_class' => 'menu-header' , 'theme_location' => 'primary' ) ); ?>
2010-02-07 17:16:26 +01:00
</ div ><!-- #access -->
2010-02-08 19:02:23 +01:00
</ div ><!-- #masthead -->
2010-02-07 17:16:26 +01:00
</ div ><!-- #header -->
2010-02-08 19:02:23 +01:00
2010-02-07 17:16:26 +01:00
< div id = " main " >