
What about giving a new life to your old blog posts? In this recipe, I’m going to show you how to easily display a random post on your blog sidebar.

What about giving a new life to your old blog posts? In this recipe, I’m going to show you how to easily display a random post on your blog sidebar.
To achieve this recipe, simply paste the following code on he sidebar.php file of your theme:
<?php
query_posts(array('orderby' => 'rand', 'showposts' => 1));
if (have_posts()) :
while (have_posts()) : the_post();
the_title();
the_excerpt();
endwhile;
endif; ?>
That's all. Your sidebar will display a random post on each of your blog pages.
Leave a Comment