content-page.php 656 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * The template used for displaying page content in page.php
  4. *
  5. * @package bml
  6. */
  7. ?>
  8. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  9. <header class="entry-header">
  10. <h1 class="entry-title"><?php the_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:', 'bml' ),
  17. 'after' => '</div>',
  18. ) );
  19. ?>
  20. </div><!-- .entry-content -->
  21. <?php edit_post_link( __( 'Edit', 'bml' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' ); ?>
  22. </article><!-- #post-## -->