Advertisement
Guest User

header.php Sela

a guest
Nov 11th, 2015
425
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.68 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 <main id="main">
  6.  *
  7.  * @package Sela
  8.  */
  9. ?>
  10. <!DOCTYPE html>
  11. <html <?php language_attributes(); ?>>
  12. <head>
  13. <meta charset="<?php bloginfo( 'charset' ); ?>">
  14. <meta name="viewport" content="width=device-width, initial-scale=1">
  15. <link rel="profile" href="http://gmpg.org/xfn/11">
  16. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
  17. <?php wp_head(); ?>
  18. </head>
  19.  
  20. <body <?php body_class(); ?>>
  21. <div id="page" class="hfeed site">
  22.     <header id="masthead" class="site-header" role="banner">
  23.         <a class="skip-link screen-reader-text" href="#content" title="<?php esc_attr_e( 'Skip to content', 'sela' ); ?>"><?php _e( 'Skip to content', 'sela' ); ?></a>
  24.  
  25.         <div class="site-branding">
  26.             <?php sela_the_site_logo(); ?>
  27.             <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
  28.             <?php if ( '' != get_bloginfo( 'description' ) ) : ?>
  29.             <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
  30.             <?php endif; ?>
  31.         </div><!-- .site-branding -->
  32.  
  33.         <nav id="site-navigation" class="main-navigation" role="navigation">
  34.             <button class="menu-toggle" aria-controls="menu" aria-expanded="false"><?php _e( 'Menu', 'sela' ); ?></button>
  35.             <img class="site-logo" src="http://iluvbethanni.com/wp-content/uploads/2015/08/iluvbethannilogo-e1441069128257.png">
  36.             <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
  37.         </nav><!-- #site-navigation -->
  38.     </header><!-- #masthead -->
  39.  
  40.     <div id="content" class="site-content">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement