Lo podrías hacer poniendo este código
Código:
<ul>
<?php query_posts('cat=1&showposts=9999'); ?>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink();?>"><?php the_title(); ?></a></li>
<?php endwhile;?>
</ul>
Donde lo de rojo es el id de tu categoría, es decir puedes repetir todo el código solo cambiando el id de tu categoría.
Salu2!