Hi all, I have installed the latest version of wordpress and veryplaintxt theme and in my blog i cannot see any subpages under the menu of the single pages.
I tried to search into the code but there are no differences between index.php and page.php before the header call.
I don't think the theme supports sub-page listing. If it uses wp_list_pages, you may have to amend the tags parameters.
i've edited page.php by adding
<?php
$children = wp_list_pages('title_li=&child_of='.$post->ID.'&echo=0');
if ($children) { ?>
<ul>
<?php echo $children; ?>
</ul>
<?php } ?>
thanks esmi