Advertisement
Guest User

Untitled

a guest
Oct 13th, 2011
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.75 KB | None | 0 0
  1. <?php get_header(); ?>
  2.     <div id="single">
  3.     <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  4.         <div class="post" id="post-<?php the_ID(); ?>">
  5.             <h2 class="title"><?php the_title(); ?></h2>
  6.             <div class="entry">
  7.                 <?php the_content('<p class="serif">Read the rest of this entry &raquo;</p>'); ?>
  8.                 <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
  9.                 <p class="taginfo"><?php echo get_the_tag_list('Tags:',', ',''); ?></p>
  10.             </div>
  11.         </div>
  12.     <?php endwhile; else: ?>
  13.         <p>Sorry, no posts matched your criteria.</p>
  14. <?php endif; ?>
  15.     </div>
  16.     <!-- end #content -->
  17. <?php get_sidebar(); ?>
  18. </div>
  19. <div class="clear"></div>
  20. <?php get_footer(); ?>
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement