Displaying a random post on your Wordpress sidebar
Displaying a random post on your Wordpress sidebar
simply add this 6 lines code into sidebar.php file of your wordpress theme..!
<?php
query_posts(array(‘orderby’ => ‘rand’, ’showposts’ => 1));
if (have_posts()) :
while (have_posts()) : the_post();
the_title();
the_excerpt();
endwhile;
endif; ?>










