Use o argumento orderby=rand no get_posts.
O meu ficou assim (mostra imagens vindas de um plugin, mas acho que dá para entender):
<?php $rand_posts = get_posts('numberposts=9&orderby=rand'); foreach( $rand_posts as $post ) : ?>
<li><div class="redimensiona"><a href="<?php the_permalink() ?>" title="Leia: <?php the_title(); ?>"><?php gi_thumbnail(1); ?></a></div></li>
<?php endforeach; ?>