<?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) { ?>
<h3><?php wp_list_pages(‘title_li=&include=’.$post->post_parent); ?></h3>
<?php } ?>
This displays correctly on the subpages, but on the parent pages it lists all the top level pages? I’m sure I did something wrong!!