default temada şu kodu çalıştırmayı denedim, sonuç olumlu...
<li><h2>Kategorideki Son 5 yazı</h2>
<ul>
<?php
// Kategoriye göre listeleme
$catname = single_cat_title("", false);
$seems = new WP_Query('category_name='.$catname.'&showposts=4'); ?>
<?php while ($seems->have_posts()) : $seems->the_post(); ?>
<p class="son5"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></p>
<?php endwhile; // Bu Kod Seems tarafından yazılmıştır. ?>
</ul>
</li>