Я нашел ответ. :) Если кто-то наткнется на этот вопрос, вот что я сделал.
Я создал новый шаблон под названием category со следующим кодом:
<code><?php get_header(); ?>
<?php
query_posts('post_type=page&post_parent='.$post->ID );
if ( have_posts() ) while ( have_posts() ) : the_post();
?>
<h3><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<pre><?php echo the_content(); ?>
<? PHP
ENDWHILE; // конец цикла.
?>
<? php get_footer (); ?>