Display all child and sub child pages using parent ID
This way the page that you are on will show in a post type the child pages of that page
[php]
<?php
$pages = get_pages(‘child_of=7&sort_column=post_date&sort_order=desc’);
<span style="color:#ff6600;">//Replace your parent id with 7</span>
$count = 0;
foreach($pages as $page)
{
$content = $page->post_content;
?>
<h2><a href="<?php echo get_page_link($page->ID) ?>">
<?php echo $page->post_title ?></a></h2>
<?php echo $content
}
?>;
[/php]