header.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. /**
  3. * The Header for our theme.
  4. *
  5. * Displays all of the <head> section and everything up till <div id="content">
  6. *
  7. * @package Illustratr
  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, initial-scale=1">
  14. <link rel="profile" href="http://gmpg.org/xfn/11">
  15. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
  16. <?php wp_head(); ?>
  17. </head>
  18. <body <?php body_class(); ?>>
  19. <div id="page" class="hfeed site">
  20. <header id="masthead" class="site-header" role="banner">
  21. <?php
  22. $header_image = get_header_image();
  23. if ( ! empty( $header_image ) ) :
  24. ?>
  25. <div class="site-image">
  26. <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" class="header-image" /></a>
  27. </div><!-- .site-image -->
  28. <?php endif; ?>
  29. <div class="site-branding">
  30. <?php illustratr_the_site_logo(); ?>
  31. <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
  32. <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
  33. </div><!-- .site-branding -->
  34. <?php if ( has_nav_menu( 'primary' ) ) : ?>
  35. <nav id="site-navigation" class="main-navigation" role="navigation">
  36. <h1 class="menu-toggle"><span class="genericon genericon-menu"><span class="screen-reader-text"><?php _e( 'Menu', 'illustratr' ); ?></span></span></h1>
  37. <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'illustratr' ); ?></a>
  38. <?php
  39. wp_nav_menu( array(
  40. 'theme_location' => 'primary',
  41. 'container_class' => 'menu-wrapper',
  42. 'menu_class' => 'clear',
  43. ) );
  44. ?>
  45. </nav><!-- #site-navigation -->
  46. <?php endif; ?>
  47. </header><!-- #masthead -->
  48. <div id="content" class="site-content">