content-hero.php 627 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Template part for displaying hero image on the single page.
  4. *
  5. * @link https://codex.wordpress.org/Template_Hierarchy
  6. *
  7. * @package Shoreditch
  8. */
  9. if ( post_password_required() || is_attachment() ) {
  10. return;
  11. }
  12. if ( 'post' !== get_post_type() && ! has_post_thumbnail() || 'post' === get_post_type() && ! shoreditch_has_post_thumbnail() ) {
  13. return;
  14. }
  15. ?>
  16. <div class="entry-hero" <?php shoreditch_background_image(); ?>>
  17. <div class="entry-hero-wrapper">
  18. <?php
  19. shoreditch_entry_meta();
  20. the_title( '<h1 class="entry-title">', '</h1>' );
  21. ?>
  22. </div><!-- .entry-hero-wrapper -->
  23. </div><!-- .entry-hero -->