Advertisement
Guest User

Untitled

a guest
Feb 17th, 2012
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <?php get_sidebar(); ?>
  4.  
  5. <div id="content">
  6. <?php if (have_posts()) : ?>
  7. <?php while (have_posts()) : the_post(); ?>
  8. <div class="post" id="post-<?php the_ID(); ?>">
  9. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
  10.  
  11. <p><?php the_content('<p class="serif">Read the rest of this entry &raquo;</p>');</p>
  12.  
  13.  
  14. <p><?php the_tags();�?></p>
  15.  
  16. <div class="post-details"> <h3>Posted in <?php the_category(' and ','');�?> by <?php the_author() ?> on <?php the_time('F jS, Y') ?> at <?php the_time() ?>. </h3><h3><a href="<?php the_permalink() ?>#comments"><?php comments_number('Add a comment','1 comment','% comments'); ?></a></h3></div>
  17. <h3><?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?></h3>
  18. <div class="prevnext">
  19. <h3><?php previous_post_link('Previous Post: %link','%title',TRUE);�?> &nbsp <?php next_post_link('Next Post: %link','%title',TRUE);�?></p></h3></div>
  20.  
  21. <?php edit_post_link('Edit Post', '<p>', '</p>'); ?></p>
  22. </div>
  23. <?php endwhile; ?>
  24. <?php else : ?>
  25. <div class="post" id="post-<?php the_ID(); ?>">
  26. <h2>Nothing to see here</h2>
  27. <p>You seemed to have found a mislinked file, page, or search query with zero results. If you feel that you've reached this page in error, double check the URL and or search string and try again.</p>
  28. <p>Alternatively, a more personalized method of tracking down and searching for content can be found <a href="#bottom_box">below</a>.</p>
  29. </div>
  30. <?php endif; ?>
  31.  
  32. <?php comments_template(); ?>
  33. </div>
  34.  
  35.  
  36. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement