Advertisement
kaed

header.php - 7/29/13

Jul 29th, 2013
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.24 KB | None | 0 0
  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 b4b
  8.  */
  9. ?><!DOCTYPE html>
  10. <html <?php language_attributes(); ?>>
  11. <head>
  12. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  13. <meta name="viewport" content="width=device-width" />
  14. <title><?php wp_title( '|', true, 'right' ); ?></title>
  15. <link rel="profile" href="http://gmpg.org/xfn/11" />
  16. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  17.  
  18. <?php wp_head(); ?>
  19. </head>
  20.  
  21. <body <?php body_class(); ?>>
  22. <div id="page" class="hfeed site">
  23.     <?php do_action( 'before' ); ?>
  24.     <header id="masthead" class="site-header" role="banner">
  25.         <div class="site-branding">
  26.             <?php do_action( 'site-branding' ); ?>     
  27.         </div>
  28.  
  29.         <nav id="site-navigation" class="navigation-main" role="navigation">
  30.             <h1 class="menu-toggle"><?php _e( 'Menu', 'b4b' ); ?></h1>
  31.             <div class="screen-reader-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'b4b' ); ?>"><?php _e( 'Skip to content', 'b4b' ); ?></a></div>
  32.  
  33.             <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
  34.         </nav><!-- #site-navigation -->
  35.     </header><!-- #masthead -->
  36.  
  37.     <div id="main" class="site-main">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement