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.
[sourcecode language=’php’]
Random Posts
- - Advertisement -
- Advertisement -
I have used the same code, it is showing same posts for five times..
I think this code is not working for random posts. Its working as a recent posts widget.
Hi Raj to prevent “the same posts error” i use this code
display
1,’orderby’ => ‘rand’, ‘showposts’ => 1));
if (have_posts()) :
while (have_posts()) : the_post();
the_post_thumbnail(‘medium’); ?>
by Maurizio