Advertisement
Guest User

Untitled

a guest
Oct 25th, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <?php
  2. /**
  3. * The template for displaying all pages.
  4. *
  5. * This is the template that displays all pages by default.
  6. * Please note that this is the WordPress construct of pages
  7. * and that other 'pages' on your WordPress site will use a
  8. * different template.
  9. *
  10. * @package Book Lite
  11. * @since Book Lite 100
  12. */
  13.  
  14. get_header(); ?>
  15.  
  16.  
  17. <?php while ( have_posts() ) : the_post(); ?>
  18.  
  19. <?php get_template_part( 'content', 'page' ); ?>
  20.  
  21. <?php comments_template( '', true ); ?>
  22.  
  23. <?php endwhile; // end of the loop. ?>
  24.  
  25.  
  26. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement