mimbopro
edit: birde bu kodlarla yapabilirmiyiz diye dusunuyorum arkadaslar $recent değişgenine bulundugumuz kategorinin ID sini nasıl atıyabiliriz
<h3>Recent Posts</h3>
<ul>
<?php
<?php query_posts('cat=$recent&showposts=5'); ?>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>