entry-header.php 319 B

1234567891011121314151617
  1. <?php declare( strict_types = 1 ); ?>
  2. <?php
  3. /**
  4. * Displays the post header
  5. *
  6. * @package Seedlet
  7. * @since 1.0.0
  8. */
  9. ?>
  10. <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
  11. <?php if ( ! is_page() ) : ?>
  12. <div class="entry-meta">
  13. <?php seedlet_entry_meta_footer(); ?>
  14. </div><!-- .meta-info -->
  15. <?php endif; ?>