Hocam bu şekilde denermisiniz, 111 yazan yere kategori idnizi, 222 yazan yerede gözükecek yazı sayısını eklersiniz 5 - 10 gibi. Sayfa oluşturduğunuzda html kısmından ekleyin bu kodları.

<?php
echo('

');
query_posts('cat=111&showposts=222');
if (have_posts()) : while (have_posts()) : the_post();
* echo(' <a href="');
the_permalink();
echo('">');
the_title();
echo('
');
endwhile; endif;
echo('

');
?>