Me parece haber ayudado a alguien con algo parecido, pero aca te dejo el código para mostrar los post de una categoría esepecífica.
Código:
<?php query_posts('cat=1&showposts=10'); ?>
<?php while (have_posts()) : the_post(); ?>
<h2> <a href="<?php the_permalink() ?>"> <?php the_title(); ?> </a></h2>
<?php the_content('Seguir Leyendo..'); ?>
<?php endwhile;?>
Donde lo resaltado es el ID de la categoría.
Salu2!