[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

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

   1  <?php
   2  /**
   3   * The Header for our theme
   4   *
   5   * Displays all of the <head> section and everything up till <div id="main">
   6   *
   7   * @package WordPress
   8   * @subpackage Twenty_Fourteen
   9   * @since Twenty Fourteen 1.0
  10   */
  11  ?><!DOCTYPE html>
  12  <!--[if IE 7]>
  13  <html class="ie ie7" <?php language_attributes(); ?>>
  14  <![endif]-->
  15  <!--[if IE 8]>
  16  <html class="ie ie8" <?php language_attributes(); ?>>
  17  <![endif]-->
  18  <!--[if !(IE 7) & !(IE 8)]><!-->
  19  <html <?php language_attributes(); ?>>
  20  <!--<![endif]-->
  21  <head>
  22      <meta charset="<?php bloginfo( 'charset' ); ?>">
  23      <meta name="viewport" content="width=device-width, initial-scale=1.0">
  24      <title><?php wp_title( '|', true, 'right' ); ?></title>
  25      <link rel="profile" href="https://gmpg.org/xfn/11">
  26      <link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
  27      <!--[if lt IE 9]>
  28      <script src="<?php echo esc_url( get_template_directory_uri() ); ?>/js/html5.js?ver=3.7.0"></script>
  29      <![endif]-->
  30      <?php wp_head(); ?>
  31  </head>
  32  
  33  <body <?php body_class(); ?>>
  34  <?php wp_body_open(); ?>
  35  <a class="screen-reader-text skip-link" href="#content">
  36      <?php
  37      /* translators: Hidden accessibility text. */
  38      _e( 'Skip to content', 'twentyfourteen' );
  39      ?>
  40  </a>
  41  <div id="page" class="hfeed site">
  42      <?php $is_front = ! is_paged() && ( is_front_page() || ( is_home() && ( (int) get_option( 'page_for_posts' ) !== get_queried_object_id() ) ) ); ?>
  43      <?php if ( get_header_image() ) : ?>
  44      <div id="site-header">
  45          <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home" <?php echo $is_front ? 'aria-current="page"' : ''; ?>>
  46              <?php twentyfourteen_header_image(); ?>
  47          </a>
  48      </div>
  49      <?php endif; ?>
  50  
  51      <header id="masthead" class="site-header">
  52          <div class="header-main">
  53              <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home" <?php echo $is_front ? 'aria-current="page"' : ''; ?>><?php bloginfo( 'name' ); ?></a></h1>
  54  
  55              <div class="search-toggle">
  56                  <a href="#search-container" class="screen-reader-text" aria-expanded="false" aria-controls="search-container">
  57                      <?php
  58                      /* translators: Hidden accessibility text. */
  59                      _e( 'Search', 'twentyfourteen' );
  60                      ?>
  61                  </a>
  62              </div>
  63  
  64              <nav id="primary-navigation" class="site-navigation primary-navigation">
  65                  <button class="menu-toggle"><?php _e( 'Primary Menu', 'twentyfourteen' ); ?></button>
  66                  <?php
  67                  wp_nav_menu(
  68                      array(
  69                          'theme_location' => 'primary',
  70                          'menu_class'     => 'nav-menu',
  71                          'menu_id'        => 'primary-menu',
  72                      )
  73                  );
  74                  ?>
  75              </nav>
  76          </div>
  77  
  78          <div id="search-container" class="search-box-wrapper hide">
  79              <div class="search-box">
  80                  <?php get_search_form(); ?>
  81              </div>
  82          </div>
  83      </header><!-- #masthead -->
  84  
  85      <div id="main" class="site-main">


Generated : Thu Apr 3 08:20:01 2025 Cross-referenced by PHPXref