Advertisement
Guest User

test

a guest
May 6th, 2015
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php $counter = 3;
  2.        $recentPosts = new WP_Query();
  3.        $recentPosts->query('showposts=3');
  4. ?>
  5.  
  6. <?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?>
  7.  
  8. <div class="box<?php echo $counter--; ?>">
  9. <?php the_excerpt(); ?>
  10. </div>
  11. <?php endwhile; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement