content-single.php 678 B

12345678910111213141516171819202122
  1. <?php ?>
  2. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  3. <header class="entry-header">
  4. <h1 class="entry-title"><?php the_title(); ?></h1>
  5. <div class="entry-meta">
  6. <?php _ph_posted_on(); ?>
  7. </div><!-- .entry-meta -->
  8. </header><!-- .entry-header -->
  9. <div class="entry-content">
  10. <?php the_content(); ?>
  11. <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', '_s' ), 'after' => '</div>' ) ); ?>
  12. </div><!-- .entry-content -->
  13. <footer class="entry-meta">
  14. <?php edit_post_link( __( 'Edit', '_s' ), '<span class="edit-link">', '</span>' ); ?>
  15. </footer><!-- .entry-meta -->
  16. </article><!-- #post-<?php the_ID(); ?> -->