How to Display Random Posts in WordPress ?

Status
Not open for further replies.

thesnake

Active Member
97
2010
6
0
Does it possible on the home page every day to showing random posts ?
I have about 10 000 posts (songs), and i do not have time to upload new posts, now i just want every day, different posts to be on the home page .
 
2 comments
If you don't want another plugin, use this code:

PHP:
<li><h2>Random Post</h2>
<ul>
<?php $posts = get_posts('orderby=rand&numberposts=5'); foreach($posts as $post) { ?>
<li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</li>
<?php } ?>
</ul>
</li>
 
Status
Not open for further replies.
Back
Top