header-content.php 737 B

123456789101112131415
  1. <?php declare( strict_types = 1 ); ?>
  2. <?php
  3. $has_primary_nav = has_nav_menu( 'primary' );
  4. $header_classes = 'site-header header_classes';
  5. $header_classes .= has_custom_logo() ? ' has-logo' : '';
  6. $header_classes .= true === get_theme_mod( 'display_title_and_tagline', true ) ? ' has-title-and-tagline' : '';
  7. $header_classes .= $has_primary_nav ? ' has-menu' : '';
  8. ?>
  9. <?php if ( ! ( true === get_theme_mod( 'hide_site_header', false ) && is_front_page() && is_page() ) ) : ?>
  10. <header id="masthead" class="<?php echo $header_classes; ?>" role="banner">
  11. <?php get_template_part( 'template-parts/header/site-branding' ); ?>
  12. <?php get_template_part( 'template-parts/header/navigation' ); ?>
  13. </header><!-- #masthead -->
  14. <?php endif; ?>