header.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. /**
  3. * The header for our theme.
  4. *
  5. * This is the template that displays all of the <head> section and everything up until <div id="content">
  6. *
  7. * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
  8. *
  9. * @package Shoreditch
  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">
  16. <link rel="profile" href="http://gmpg.org/xfn/11">
  17. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
  18. <?php wp_head(); ?>
  19. </head>
  20. <body <?php body_class(); ?>>
  21. <div id="page" class="site">
  22. <a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'shoreditch' ); ?></a>
  23. <header id="masthead" class="site-header" role="banner">
  24. <div class="site-header-wrapper">
  25. <div class="site-branding">
  26. <?php shoreditch_the_custom_logo(); ?>
  27. <?php if ( is_front_page() && is_home() ) : ?>
  28. <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
  29. <?php else : ?>
  30. <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
  31. <?php endif; ?>
  32. <p class="site-description"><?php bloginfo( 'description' ); ?></p>
  33. </div><!-- .site-branding -->
  34. <?php if ( has_nav_menu( 'primary' ) ) : ?>
  35. <button id="menu-toggle" class="menu-toggle"><?php esc_html_e( 'Menu', 'shoreditch' ); ?></button>
  36. <div id="site-menu" class="site-menu">
  37. <nav id="site-navigation" class="main-navigation" role="navigation" aria-label="<?php esc_html_e( 'Primary Menu', 'shoreditch' ); ?>">
  38. <?php
  39. wp_nav_menu( array(
  40. 'theme_location' => 'primary',
  41. 'menu_class' => 'primary-menu',
  42. ) );
  43. ?>
  44. </nav><!-- .main-navigation -->
  45. </div><!-- .site-menu -->
  46. <?php endif; ?>
  47. <?php
  48. if ( function_exists( 'shoreditch_woocommerce_header_cart' ) ) {
  49. shoreditch_woocommerce_header_cart();
  50. }
  51. ?>
  52. </div><!-- .site-header-wrapper -->
  53. </header><!-- #masthead -->
  54. <div id="content" class="site-content">
  55. <?php if ( get_header_image() ) : ?>
  56. <div class="header-image">
  57. <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
  58. <img src="<?php header_image(); ?>" width="<?php echo esc_attr( get_custom_header()->width ); ?>" height="<?php echo esc_attr( get_custom_header()->height ); ?>" alt="">
  59. </a>
  60. </div><!-- .header-image -->
  61. <?php endif; // End header image check. ?>