We have been using plugins to display random posts on our sidebar. As all may have known, avoiding the use of plugins may decrease the loading speed of any wordpress website. We have started using these very simple line of codes just to make that happen. So how do we display random posts in WordPress sidebar without any plugins?
The Code
Just simply open you sidebar.php or on any file (eg:tab.php etc) where you need it to appear on sidebar and paste these codes.
<h2>Random Posts</h2>
<ul>
<?php $posts = get_posts('orderby=rand&numberposts=3'); foreach($posts as $post) { ?>
<li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?><br />
<span><?php the_excerpt(); ?><br /><em>—Posted on <?php the_time('n/j/Y') ?></em></span></a>
</li>
<?php } ?>
</ul>
Simply troubleshoot, try and see how it looks like until you satisfy with it. Enjoy!

