Advertisement
Konark

Untitled

Sep 21st, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <?php
  2. /**
  3. * The template used for displaying page content in page.php
  4. *
  5. * @package Amadeus
  6. */
  7. ?>
  8.  
  9. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  10. <header class="entry-header">
  11. <?php the_title( sprintf( '<h1 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h1>' ); ?>
  12. </header><!-- .entry-header -->
  13.  
  14. <div class="entry-content">
  15. <?php the_content(); ?>
  16. <?php
  17. wp_link_pages(
  18. array(
  19. 'before' => '<div class="page-links">' . __( 'Pages:', 'amadeus' ),
  20. 'after' => '</div>',
  21. )
  22. );
  23. ?>
  24. </div><!-- .entry-content -->
  25.  
  26. <footer class="entry-footer">
  27. <?php edit_post_link( __( 'Edit', 'amadeus' ), '<span class="edit-link">', '</span>' ); ?>
  28. </footer><!-- .entry-footer -->
  29. </article><!-- #post-## -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement