<?php if (have_posts()) : ?>
<?php $recent = new WP_Query("cat=26&showposts=6"); while($recent->have_posts()) : $recent->the_post();?>
<a href="<?php the_permalink() ?>"  rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
<?php the_content('Read the rest of this entry &raquo;'); ?>
<?php endwhile; ?>
<?php else: ?>
<h2 class="center">Bulunamadı.</h2>
<p class="center">Üzgünüz ancak aradığınız tema burada değil.</p>
<?php endif; ?>
cat=26 burada ki 26 gözükmesini istediğiniz kategori ID si oluyor. Birden çok kategori gözüksün isterseniz 26,27,39 gibi araya virgül atarak çoğalta bilirsiniz.