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:
Tags: Cheat Sheet, Wordpress, WordPress Hacks









Leave your response!