content-single.php 925 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /**
  3. * Template part for displaying single posts.
  4. *
  5. * @package Libre 2
  6. */
  7. ?>
  8. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  9. <?php if ( libre_2_has_post_thumbnail() ) { ?>
  10. <div class="post-thumbnail">
  11. <?php the_post_thumbnail( 'libre-2-post-thumbnail' ); ?>
  12. </div>
  13. <?php } ?>
  14. <header class="entry-header">
  15. <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
  16. <div class="entry-meta">
  17. <?php libre_2_posted_on(); ?>
  18. </div><!-- .entry-meta -->
  19. </header><!-- .entry-header -->
  20. <div class="entry-content">
  21. <?php the_content(); ?>
  22. <?php
  23. wp_link_pages( array(
  24. 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'libre-2' ),
  25. 'after' => '</div>',
  26. ) );
  27. ?>
  28. </div><!-- .entry-content -->
  29. <footer class="entry-footer">
  30. <?php libre_2_entry_footer(); ?>
  31. </footer><!-- .entry-footer -->
  32. <?php libre_2_author_bio(); ?>
  33. </article><!-- #post-## -->