[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-content/themes/twentyeleven/ -> header.php (source)

   1  <?php
   2  /**
   3   * Header template for the theme
   4   *
   5   * Displays all of the <head> section and everything up till <div id="main">.
   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, initial-scale=1.0" />
  27  <title>
  28  <?php
  29      // Print the <title> tag based on what is being viewed.
  30      global $page, $paged;
  31  
  32      wp_title( '|', true, 'right' );
  33  
  34      // Add the site name.
  35      bloginfo( 'name' );
  36  
  37      // Add the site description for the home/front page.
  38      $site_description = get_bloginfo( 'description', 'display' );
  39  if ( $site_description && ( is_home() || is_front_page() ) ) {
  40      echo " | $site_description";
  41  }
  42  
  43      // Add a page number if necessary:
  44  if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) {
  45      /* translators: %s: Page number. */
  46      echo esc_html( ' | ' . sprintf( __( 'Page %s', 'twentyeleven' ), max( $paged, $page ) ) );
  47  }
  48  
  49  ?>
  50      </title>
  51  <link rel="profile" href="https://gmpg.org/xfn/11" />
  52  <link rel="stylesheet" type="text/css" media="all" href="<?php echo esc_url( get_stylesheet_uri() ); ?>?ver=20250415" />
  53  <link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
  54  <!--[if lt IE 9]>
  55  <script src="<?php echo esc_url( get_template_directory_uri() ); ?>/js/html5.js?ver=3.7.0" type="text/javascript"></script>
  56  <![endif]-->
  57  <?php
  58      /*
  59       * We add some JavaScript to pages with the comment form
  60       * to support sites with threaded comments (when in use).
  61       */
  62  if ( is_singular() && get_option( 'thread_comments' ) ) {
  63      wp_enqueue_script( 'comment-reply' );
  64  }
  65  
  66      /*
  67       * Always have wp_head() just before the closing </head>
  68       * tag of your theme, or you will break many plugins, which
  69       * generally use this hook to add elements to <head> such
  70       * as styles, scripts, and meta tags.
  71       */
  72      wp_head();
  73  ?>
  74  </head>
  75  
  76  <body <?php body_class(); ?>>
  77  <?php wp_body_open(); ?>
  78  <div id="page" class="hfeed">
  79      <header id="branding">
  80              <hgroup>
  81                  <?php
  82                  $is_front         = ! is_paged() && ( is_front_page() || ( is_home() && ( (int) get_option( 'page_for_posts' ) !== get_queried_object_id() ) ) );
  83                  $site_name        = get_bloginfo( 'name', 'display' );
  84                  $site_description = get_bloginfo( 'description', 'display' );
  85  
  86                  if ( $site_name ) :
  87                      ?>
  88                      <h1 id="site-title"><span><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home" <?php echo $is_front ? 'aria-current="page"' : ''; ?>><?php echo $site_name; ?></a></span></h1>
  89                      <?php
  90                  endif;
  91  
  92                  if ( $site_description ) :
  93                      ?>
  94                      <h2 id="site-description"><?php echo $site_description; ?></h2>
  95                  <?php endif; ?>
  96              </hgroup>
  97  
  98              <?php
  99              // Check to see if the header image has been removed.
 100              $header_image = get_header_image();
 101              if ( $header_image ) :
 102                  // Compatibility with versions of WordPress prior to 3.4.
 103                  if ( function_exists( 'get_custom_header' ) ) {
 104                      /*
 105                       * We need to figure out what the minimum width should be for our featured image.
 106                       * This result would be the suggested width if the theme were to implement flexible widths.
 107                       */
 108                      $header_image_width = get_theme_support( 'custom-header', 'width' );
 109                  } else {
 110                      $header_image_width = HEADER_IMAGE_WIDTH;
 111                  }
 112                  ?>
 113              <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home" <?php echo $is_front ? 'aria-current="page"' : ''; ?>>
 114                  <?php
 115                  /*
 116                   * The header image.
 117                   * Check if this is a post or page, if it has a thumbnail, and if it's a big one
 118                   */
 119                  $image = false;
 120                  if ( is_singular() && has_post_thumbnail( $post->ID ) ) {
 121                      $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), array( $header_image_width, $header_image_width ) );
 122                  }
 123                  if ( $image && $image[1] >= $header_image_width ) {
 124                      // Houston, we have a new header image!
 125                      echo get_the_post_thumbnail( $post->ID, 'post-thumbnail' );
 126                  } else {
 127                      twentyeleven_header_image();
 128                  } // End check for featured image or standard header.
 129                  ?>
 130              </a>
 131              <?php endif; // End check for removed header image. ?>
 132  
 133              <?php
 134                  // Has the text been hidden?
 135              if ( 'blank' === get_header_textcolor() ) :
 136                  $header_image_class = '';
 137                  if ( $header_image ) {
 138                      $header_image_class = ' with-image';
 139                  }
 140                  ?>
 141              <div class="only-search<?php echo $header_image_class; ?>">
 142                  <?php get_search_form(); ?>
 143              </div>
 144                  <?php
 145                  else :
 146                      ?>
 147                      <?php get_search_form(); ?>
 148              <?php endif; ?>
 149  
 150              <nav id="access">
 151                  <h3 class="assistive-text"><?php _e( 'Main menu', 'twentyeleven' ); ?></h3>
 152                  <?php
 153                  /*
 154                   * Our navigation menu. If one isn't filled out, wp_nav_menu() falls back to wp_page_menu().
 155                   * The menu assigned to the primary location is the one used.
 156                   * If one isn't assigned, the menu with the lowest ID is used.
 157                   */
 158                  wp_nav_menu( array( 'theme_location' => 'primary' ) );
 159                  ?>
 160              </nav><!-- #access -->
 161      </header><!-- #branding -->
 162  
 163  
 164      <div id="main">


Generated : Sat Jul 26 08:20:01 2025 Cross-referenced by PHPXref