Random Post List without plugin – Wordpress
how to make a random post list on your sidebar:
<ul>
<?php $myq = new WP_Query(’showposts=10&orderby=rand’); if($myq->have_posts()) : while($myq->have_posts()) : $myq->the_post(); ?>
<li><a href=”<?php the_permalink() ?>” rel=”bookmark” title=”<?php _e(’Permanent link to’); ?> <?php the_title(); ?>”><?php the_title(); ?></a></li>
<?php endwhile; endif; ?>
</ul>








