<?php $bastir = new WP_Query('post_type=post&showposts=10&orderby=rand'); while ($bastir->have_posts()) : $bastir->the_post(); ?>
<a href="<? the_permalink(); ?>"><? the_title(); ?></a>
<?php endwhile; wp_reset_query(); ?>Bu şekilde yapabilirsiniz. Kendi sorgunuz hazırsa onuda bu döngüyle değiştrebilirsiniz.
10 Rakamı her yenilemede kaç post geleceğini belirler.