Advertisement
Guest User

Untitled

a guest
Jul 30th, 2012
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1.  
  2.  
  3. <?php if (have_posts()) : ?>
  4. <?php if (($wp_query->post_count) > 1) : ?>
  5. <?php while (have_posts()) : the_post(); ?>
  6. <?php the_excerpt() ?>
  7. <?php endwhile; ?>
  8.  
  9. <?php else : ?>
  10.  
  11. <?php while (have_posts()) : the_post(); ?>
  12. <?php the_excerpt() ?>
  13. <?php endwhile; ?>
  14. <?php endif; ?>
  15.  
  16. <?php else : ?>
  17. <p>Nothing to see here.</p>
  18.  
  19. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement