How To Randomize Post Order In WordPress

Posted by admin 2 August 2010

To randomize posts order, you simply have to use the query_posts() function before the WordPress loop like the following:

<?php query_posts('orderby=rand'); ?>
<?php //WordPress loop goes here ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>

Related posts:

  1. WordPress Theme Tweaking Cheat Seets
Tags: , ,

Leave your response!

You can subscribe to these comments via RSS.