Nessuna descrizione

excerpt-header.php 547B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Displays the post header
  4. *
  5. * @package WordPress
  6. * @subpackage Twenty_Twenty_One
  7. * @since Twenty Twenty-One 1.0
  8. */
  9. // Don't show the title if the post-format is `aside` or `status`.
  10. $post_format = get_post_format();
  11. if ( 'aside' === $post_format || 'status' === $post_format ) {
  12. return;
  13. }
  14. ?>
  15. <header class="entry-header">
  16. <?php
  17. the_title( sprintf( '<h2 class="entry-title default-max-width"><a href="%s">', esc_url( get_permalink() ) ), '</a></h2>' );
  18. twenty_twenty_one_post_thumbnail();
  19. ?>
  20. </header><!-- .entry-header -->