Advertisement
Guest User

Untitled

a guest
Oct 21st, 2012
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <?php if ( have_posts() ) : while ( have_posts() ) : the_post();
  2.  
  3. ?>
  4.  
  5.  
  6. <div class="post">
  7.  
  8. <div class="single_title">
  9. <?php the_title(); ?><br />
  10. <span class="numComments"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span>
  11. <br />&nbsp;
  12. </div>
  13.  
  14.  
  15.  
  16. <?php if ( function_exists('has_post_thumbnail') && has_post_thumbnail($post->ID) ){
  17. ?>
  18. <div class="single_figure">
  19. <?php the_post_thumbnail(full);
  20. ?>
  21. </div> <!--/figure-->
  22. <?php } ?>
  23.  
  24.  
  25.  
  26.  
  27. <div class="single_post">
  28.  
  29. <?php the_content(); ?><br />
  30. </div><!--/post_content-->
  31. <br /><br />
  32. </div><!--/post-->
  33. <?php endwhile; else: ?>
  34.  
  35. <p>Sorry, no posts matched your criteria.</p>
  36.  
  37. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement