Recent Posts in Random Order
-
I’m trying to put a list of recent posts in the sidebar of my blog, but I want them to be in random order. So the most recent 20 posts, but not ordered by date.
<?php $topStoriesList = new WP_Query('showposts=20'); ?> <?php while ($topStoriesList->have_posts()) : $topStoriesList->the_post(); ?> <li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li> <?php endwhile; ?>
This is what I have, but if I change it to “&orderby=rand” it randomizes the posts it grabs so they aren’t the 20 most recent. Help? Thanks.
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Recent Posts in Random Order’ is closed to new replies.