Extra bir koda gerek yok hocam, wordpress alt yapısı ile zaten istediğiniz yazıları çekebilirsiniz..
<?php
$catquery = new WP_Query( 'cat=3&posts_per_page=10' );
while($catquery->have_posts()) : $catquery->the_post();
?>
<ul>
<li><h3><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
<ul><li><?php the_content(); ?></li>
</ul>
</li>
</ul>
<?php endwhile; ?>
cat=3 -> konuları cekeceğim kategori id'si
posts_per_page=10 -> kaçtane konu çekeceğin
kolay gelsin.