No wordpress, pra trazer os posts de uma única categoria é muito simples. Além do The_loop principal, você pode usar múltiplos loops com a função wp_query, dessa forma você pode montar uma template com mais cara de CMS. Vamos ao exemplo:
\\ faco o loop so da categoria 20 e trago os ultimos 5 posts <?php $recent = new WP_Query("cat=20&showposts=5"); while($recent->have_posts()) : $recent->the_post();?> \\ crio o link no titulo <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> \\ mostro o excerpt da pagina <?php the_excerpt(); ?> <?php endwhile; ?>`