Advertisement
Guest User

page.php

a guest
Feb 20th, 2013
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="content" class="page">
  4.  
  5. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  6. <div class="post" id="post-<?php the_ID(); ?>">
  7.  
  8. <div class="entry">
  9. <?php // the_title(); ?>
  10. <?php the_content('<p class="serif">Read the rest of this page &raquo;</p>'); ?>
  11.  
  12.  
  13. </div>
  14. </div>
  15. <?php endwhile; endif; ?>
  16.  
  17. </div><!--content-->
  18.  
  19. <?php get_sidebar(); ?>
  20.  
  21. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement