Advertisement
Guest User

Untitled

a guest
Feb 21st, 2015
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 5.22 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Header template for the theme
  4.  *
  5.  *
  6.  *
  7.  * @package WordPress
  8.  * @subpackage Twenty_Eleven
  9.  * @since Twenty Eleven 1.0
  10.  */
  11. ?><!DOCTYPE html>
  12. <!--[if IE 6]>
  13. <html id="ie6" <?php language_attributes(); ?>>
  14. <![endif]-->
  15. <!--[if IE 7]>
  16. <html id="ie7" <?php language_attributes(); ?>>
  17. <![endif]-->
  18. <!--[if IE 8]>
  19. <html id="ie8" <?php language_attributes(); ?>>
  20. <![endif]-->
  21. <!--[if !(IE 6) & !(IE 7) & !(IE 8)]><!-->
  22. <html <?php language_attributes(); ?>>
  23. <!--<![endif]-->
  24. <head>
  25. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  26. <meta name="viewport" content="width=device-width" />
  27. <title><?php
  28.     // Print the <title> tag based on what is being viewed.
  29.     global $page, $paged;
  30.  
  31.     wp_title( '|', true, 'right' );
  32.  
  33.     // Add the blog name.
  34.     bloginfo( 'name' );
  35.  
  36.     // Add the blog description for the home/front page.
  37.     $site_description = get_bloginfo( 'description', 'display' );
  38.     if ( $site_description && ( is_home() || is_front_page() ) )
  39.         echo " | $site_description";
  40.  
  41.     // Add a page number if necessary:
  42.     if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() )
  43.         echo ' | ' . sprintf( __( 'Page %s', 'twentyeleven' ), max( $paged, $page ) );
  44.  
  45.     ?></title>
  46. <link rel="profile" href="http://gmpg.org/xfn/11" />
  47. <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
  48. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  49. <!--[if lt IE 9]>
  50. <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script>
  51. <![endif]-->
  52. <?php
  53.     /*
  54.      * We add some JavaScript to pages with the comment form
  55.      * to support sites with threaded comments (when in use).
  56.      */
  57.     if ( is_singular() && get_option( 'thread_comments' ) )
  58.         wp_enqueue_script( 'comment-reply' );
  59.  
  60.     /*
  61.      * Always have wp_head() just before the closing </head>
  62.      * tag of your theme, or you will break many plugins, which
  63.      * generally use this hook to add elements to <head> such
  64.      * as styles, scripts, and meta tags.
  65.      */
  66.     wp_head();
  67. ?>
  68. </head>
  69.  
  70. <body <?php body_class(); ?>>
  71. <div id="page" class="hfeed">
  72.     <header id="branding" role="banner">
  73.             <hgroup>
  74.                 <h1 id="site-title"><span><a>" rel="home"><?php bloginfo( 'name' ); ?></a></span></h1>
  75.                 <h2 id="site-description"><?php bloginfo( 'description' ); ?></h2>
  76.  
  77.             </hgroup>
  78.  
  79.             <?php
  80.                 // Check to see if the header image has been removed
  81.                 $header_image = get_header_image();
  82.                 if ( $header_image ) :
  83.                     // Compatibility with versions of WordPress prior to 3.4.
  84.                     if ( function_exists( 'get_custom_header' ) ) {
  85.                         /*
  86.                          * We need to figure out what the minimum width should be for our featured image.
  87.                          * This result would be the suggested width if the theme were to implement flexible widths.
  88.                          */
  89.                         $header_image_width = get_theme_support( 'custom-header', 'width' );
  90.                     } else {
  91.                         $header_image_width = HEADER_IMAGE_WIDTH;
  92.                     }
  93.                     ?>
  94.             <a>">
  95.                 <?php
  96.                     /*
  97.                      * The header image.
  98.                      * Check if this is a post or page, if it has a thumbnail, and if it's a big one
  99.                      */
  100.                     if ( is_singular() && has_post_thumbnail( $post->ID ) &&
  101.                             ( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), array( $header_image_width, $header_image_width ) ) ) &&
  102.                             $image[1] >= $header_image_width ) :
  103.                         // Houston, we have a new header image!
  104.                         echo get_the_post_thumbnail( $post->ID, 'post-thumbnail' );
  105.                     else :
  106.                         // Compatibility with versions of WordPress prior to 3.4.
  107.                         if ( function_exists( 'get_custom_header' ) ) {
  108.                             $header_image_width  = get_custom_header()->width;
  109.                             $header_image_height = get_custom_header()->height;
  110.                         } else {
  111.                             $header_image_width  = HEADER_IMAGE_WIDTH;
  112.                             $header_image_height = HEADER_IMAGE_HEIGHT;
  113.                         }
  114.                         ?>
  115.                     <img src="<?php header_image(); ?>" width="<?php echo $header_image_width; ?>" height="<?php echo $header_image_height; ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" />
  116.                 <?php endif; // end check for featured image or standard header ?>
  117.             </a>
  118.             <?php endif; // end check for removed header image ?>
  119.  
  120.             <?php
  121.                 // Has the text been hidden?
  122.                 if ( 'blank' == get_header_textcolor() ) :
  123.             ?>
  124.  
  125.             <?php
  126.                 else :
  127.             ?>
  128.                 <?php get_search_form(); ?>
  129.             <?php endif; ?>
  130.  
  131.             <nav id="access" role="navigation">
  132.                 <h3 class="assistive-text"><?php _e( 'Main menu', 'twentyeleven' ); ?></h3>
  133.                 <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?>
  134.                 <div class="skip-link"><a href="#content"><?php _e( 'Skip to primary content', 'twentyeleven' ); ?></a></div>
  135.                 <?php if ( ! is_singular() ) : ?>
  136.                     <div class="skip-link"><a href="#secondary"><?php _e( 'Skip to secondary content', 'twentyeleven' ); ?></a></div>
  137.                 <?php endif; ?>
  138.                 <?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. */ ?>
  139.                 <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
  140.             </nav><!-- #access -->
  141.     </header><!-- #branding -->
  142.  
  143.     <div id="main">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement