| [ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Summary view] [Print] [Text view]
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 <html <?php language_attributes(); ?>> 13 <head> 14 <meta charset="<?php bloginfo( 'charset' ); ?>"> 15 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 16 <title><?php wp_title( '|', true, 'right' ); ?></title> 17 <link rel="profile" href="https://gmpg.org/xfn/11"> 18 <link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>"> 19 <?php wp_head(); ?> 20 </head> 21 22 <body <?php body_class(); ?>> 23 <?php wp_body_open(); ?> 24 <a class="screen-reader-text skip-link" href="#content"> 25 <?php 26 /* translators: Hidden accessibility text. */ 27 _e( 'Skip to content', 'twentyfourteen' ); 28 ?> 29 </a> 30 <div id="page" class="hfeed site"> 31 <?php $is_front = ! is_paged() && ( is_front_page() || ( is_home() && ( (int) get_option( 'page_for_posts' ) !== get_queried_object_id() ) ) ); ?> 32 <?php if ( get_header_image() ) : ?> 33 <div id="site-header"> 34 <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home" <?php echo $is_front ? 'aria-current="page"' : ''; ?>> 35 <?php twentyfourteen_header_image(); ?> 36 </a> 37 </div> 38 <?php endif; ?> 39 40 <header id="masthead" class="site-header"> 41 <div class="header-main"> 42 <?php 43 $site_name = get_bloginfo( 'name', 'display' ); 44 if ( $site_name ) : 45 ?> 46 <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home" <?php echo $is_front ? 'aria-current="page"' : ''; ?>><?php echo $site_name; ?></a></h1> 47 <?php endif; ?> 48 49 <div class="search-toggle"> 50 <a href="#search-container" class="screen-reader-text" aria-expanded="false" aria-controls="search-container"> 51 <?php 52 /* translators: Hidden accessibility text. */ 53 _e( 'Search', 'twentyfourteen' ); 54 ?> 55 </a> 56 </div> 57 58 <nav id="primary-navigation" class="site-navigation primary-navigation"> 59 <button class="menu-toggle"><?php _e( 'Primary Menu', 'twentyfourteen' ); ?></button> 60 <?php 61 wp_nav_menu( 62 array( 63 'theme_location' => 'primary', 64 'menu_class' => 'nav-menu', 65 'menu_id' => 'primary-menu', 66 ) 67 ); 68 ?> 69 </nav> 70 </div> 71 72 <div id="search-container" class="search-box-wrapper hide"> 73 <div class="search-box"> 74 <?php get_search_form(); ?> 75 </div> 76 </div> 77 </header><!-- #masthead --> 78 79 <div id="main" class="site-main">
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated : Tue Oct 28 08:20:05 2025 | Cross-referenced by PHPXref |