He estado mirando por ahi y encontre codigos que solo muestra la lista de titulos con las sub-paginas
Código PHP:
<?php
if($post->post_parent)
$children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0");
else
$children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0");
if ($children) { ?>
<ul>
<?php echo $children; ?>
</ul>
<?php } ?>
pero eso no me sirve, yo creo entender que el codigo deberia ser algo como el codigo que va dentro del content:
Código PHP:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="post-title">
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<?php the_content('Leer <span>más...</span>'); ?>
pero claro con los children si no meequivoco, y la clave estaria en:
Código PHP:
<?php while (have_posts()) : the_post(); ?>
Aluna sugerencia???