content-single.php 548 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * The template used for displaying individual post pages
  4. *
  5. * @package Libretto
  6. */
  7. ?>
  8. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  9. <div class="entry-content">
  10. <?php the_content(); ?>
  11. <?php wp_link_pages( array(
  12. 'before' => '<div class="page-links">'.__( 'Pages:', 'libretto' ),
  13. 'pagelink' => '<span>%</span>',
  14. 'after' => '</div>',
  15. ) ); ?>
  16. </div><!-- .entry-content -->
  17. <footer class="entry-meta">
  18. <?php libretto_entry_footer(); ?>
  19. </footer><!-- .entry-meta -->
  20. </article><!-- #post-## -->