This is an old version of this answer!
Return to the current answer<?php
function returnrand(){
return ' RAND() ';
}
?>
......
<?php add_filter('posts_orderby_request', 'returnrand); ?>
<ul id="feature-slides">
<?php $q2 = new WP_Query('showposts=5&cat=5&meta_key=quote_reader&meta_value='. $readerid.''); ?>
<?php if($q2->have_posts()) : ?><?php while($q2->have_posts()) : $q2->the_post(); ?>
<li><?php the_content(); ?></li>
<?php endwhile; endif; ?>
</ul>
<?php remove_filter('posts_orderby_request', 'returnrand'); ?>
Oleg Butuzov | 05/14/10 at 2:50pm





