Quote:
Originally Posted by harvey
not sure what do you mean by shuffle, I take you mean random. If so, open your index.php, look for the loop and add something like this:
Code:
<?php
$rand_posts = get_posts('numberposts=10&orderby=rand');
foreach( $rand_posts as $post ) :
?>
<div class="post">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
</div>
<?php endforeach; ?>
|
I would try this one first personally