content-page.php 570 B

123456789101112131415
  1. <?php
  2. /**
  3. * The template used for displaying page content in page.php
  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( __( 'read more', 'libretto' ) ); ?>
  11. <?php wp_link_pages( array( 'before' => '<div class="page-links">'.__( 'Pages:', 'libretto' ), 'after' => '</div>' ) ); ?>
  12. </div><!-- .entry-content -->
  13. <?php edit_post_link( __( 'Edit', 'libretto' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' ); ?>
  14. </article><!-- #post-## -->