cat=5 buraya kategorinin ID sini yaz
posts_per_page=-1 -1 kalırsa o katagorinin tüm yazıları gözükür
mesala 10 yazarsan sadece 10 yazı gözükür o kategori ile alakalı
<?php
query_posts('cat=5&posts_per_page=-1');
//cat=5 kategorinin ID'si, posts_per_page=-1 bütün yazılar. while (have_posts()) : the_post(); ?>
<h2 id="post-<?php the_ID(); ?>"><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile; ?>