<ul>
  <?php query_posts('showposts=5&orderby=rand'); if (have_posts()) : while (have_posts()) : the_post(); ?>
  <li><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>
  <?php endwhile; endif; ?>
  </ul>
Hocam bu en sade halidir. Ekran çıktısı olarak 5 adet konuyu rastgele çeker. Yani şu şekilde:
<ul>
<li>Konu 1</li>
<li>Konu 2</li>
<li>Konu 3</li>
<li>Konu 4</li>
<li>Konu 5</li>
</ul>
Olmadı index.php dosyası içeriğini buraya ekle. Bir başka arkadaş veya vakit bulursam ben bir şeyler yapayım.