The problem is that when I navigate to the 3rd level pages their Ancestors do not show up…
(Below the problem occurs on pages like Page 1.2.1)
Page Structure-
Page 1
Page 1.1
Page 1.2
Page 1.2.1
Page 2
etc.
Here is my current code-
<?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) {
$output = wp_list_pages ('echo=0&depth=2&child_of='.$page->post_parent.'&title_li=');
?>
<div id="sub_nav">
<ul>
<?php echo $children; ?>
</ul>
</div> <!-- end subnav -->
<?php } ?>