Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2012
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. <?php /* Start the Loop */ ?>
  2.  
  3. <?php $count = 0; ?>
  4.  
  5. <?php while ( have_posts() ) : the_post(); ?>
  6.  
  7. <?php get_template_part( 'loop', get_post_format() ); ?>
  8.  
  9. <?php $count++; ?>
  10.  
  11. <?php endwhile; ?>
  12.  
  13.  
  14. <?php if (($wp_query->post_count) == 1) : ?>
  15.  
  16. <?php admired_pagination(); ?>
  17.  
  18. <div class="posts_1_area_spacer">
  19. </div>
  20.  
  21. <?php endif; ?>
  22.  
  23. <?php if (($wp_query->post_count) == 2) : ?>
  24.  
  25. <?php admired_pagination(); ?>
  26.  
  27. <div class="posts_2_area_spacer">
  28. </div>
  29.  
  30. <?php endif; ?>
  31.  
  32. <?php if (($wp_query->post_count) == 3) : ?>
  33.  
  34. <?php admired_pagination(); ?>
  35.  
  36. <div class="posts_3_area_spacer">
  37. </div>
  38.  
  39. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement