How to display random posts without plugin?

Yes there are so many plugins that can help you display random posts , But you know that plugins will slow down your WordPress blog. Here I want to show you how to dis play random posts without plugin.

Just add the codes below to your sidebar or anywhere you want:

< ?php $rand_posts = get_posts('numberposts=5&orderby=rand');
foreach( $rand_posts as $post ) : ?>
  • < ?php the_title(); ?>
  • < ?php endforeach; ?>

    The 5 in the codes above is the numble of those posts will display. Yes, it is very easy!

    [via WordPress Codex]

    This entry was posted in Theme Tips and tagged , . Bookmark the permalink.

    Leave a Reply

    Your email address will not be published. Required fields are marked *

    *

    You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>