content-custom-header.php 739 B

12345678910111213141516171819202122232425262728293031
  1. <div class="site-banner-content banner-custom-header">
  2. <?php
  3. /**
  4. * Media
  5. */
  6. ?>
  7. <div class="site-banner-media">
  8. <?php $header_image = get_header_image(); ?>
  9. <div class="site-banner-thumbnail" <?php if ( $header_image ) { echo 'style="background-image: url(' . esc_url( $header_image ) . ');"'; } ?>></div>
  10. </div>
  11. <?php
  12. /**
  13. * Custom Header text
  14. */
  15. $description = get_bloginfo( 'description', 'display' );
  16. if ( '' != $description || is_customize_preview() ) : ?>
  17. <div class="site-banner-header banner-description">
  18. <h1 class="entry-title site-description">
  19. <?php echo $description; /* WPCS: xss ok. */ ?>
  20. </h1>
  21. </div><!-- .site-banner-header -->
  22. <?php endif; ?>
  23. </div><!-- .site-banner-content -->