Belli kategorideki yazılarımı yoksa rastgele kategorideki yazılarımı göstereceksiniz hocam.

Şöylede denebilirsiniz.

<?php query_posts('showposts=5&orderby=date&cat=1'); ?>
<?php while (have_posts()) : the_post(); ?>
<h3><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<p><?php the_excerpt(); ?></p>
<?php endwhile; ?>
İstediğiniz kategorileri bu kod ile cat=1 kategoiri id'sini değiştirerek yapabilirsiniz.