content-page.php 723 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * Template part for displaying page content in page.php.
  4. *
  5. * @link https://codex.wordpress.org/Template_Hierarchy
  6. *
  7. * @package Lodestar
  8. */
  9. ?>
  10. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  11. <header class="entry-header">
  12. <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
  13. </header>
  14. <div class="entry-content">
  15. <?php
  16. the_content();
  17. wp_link_pages( array(
  18. 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'lodestar' ),
  19. 'after' => '</div>',
  20. 'link_before' => '<span>',
  21. 'link_after' => '</span>'
  22. ) );
  23. ?>
  24. </div>
  25. <footer class="entry-footer">
  26. <?php lodestar_edit_link( get_the_ID() ); ?>
  27. </footer>
  28. </article><!-- #post-## -->