Advertisement
Guest User

Untitled

a guest
Oct 21st, 2012
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  2.  
  3. <div class="post">
  4.  
  5. <div class="figure">
  6. <a href="<?php the_permaLink() ?>">
  7. <?php if ( function_exists('has_post_thumbnail') && has_post_thumbnail($post->ID) ){
  8. the_post_thumbnail('thumbnail');
  9. }
  10. else{?>
  11. <img src="<?php echo get_template_directory_uri(); ?>/images/following_100x100.jpg" alt="ArrowFans.com Logo" />
  12.  
  13. <?php } ?>
  14. </a>
  15. </div> <!--/figure-->
  16.  
  17. <div class="post_content">
  18. <h2><a href="<?php the_permaLink() ?>"><?php the_title(); ?></a></h2>
  19. <span class="numComments"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span>
  20. <?php the_content(); ?><br />
  21. </div><!--/post_content-->
  22. <br /><br />
  23. </div><!--/post-->
  24. <?php endwhile; else: ?>
  25.  
  26. <p>Sorry, no posts matched your criteria.</p>
  27.  
  28. <?php endif; ?>
  29.  
  30. <div style="text-align:center;">
  31. <?php next_posts_link('<< Older Posts'); ?>
  32. <?php previous_posts_link('Newer Posts >>'); ?>
  33. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement