content-page.php 701 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * The template used for displaying page content in page.php
  4. *
  5. * @package Sketch
  6. */
  7. ?>
  8. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  9. <header class="entry-header">
  10. <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
  11. </header><!-- .entry-header -->
  12. <div class="entry-content">
  13. <?php the_content(); ?>
  14. <?php
  15. wp_link_pages( array(
  16. 'before' => '<div class="page-links">' . __( 'Pages:', 'sketch' ),
  17. 'after' => '</div>',
  18. ) );
  19. ?>
  20. </div><!-- .entry-content -->
  21. <footer class="entry-footer">
  22. <?php edit_post_link( __( 'Edit', 'sketch' ), '<span class="edit-link">', '</span>' ); ?>
  23. </footer><!-- .entry-footer -->
  24. </article><!-- #post-## -->