Hi
I notice on this site at:
The sidebar presents a list of subpages AND the parent page (see the "Intro" item in the sidebar list).
I have checked the codex (http://codex.wordpress.org/Template_Tags/wp_list_pages) in relation to sub-pages and it has provided me code to display a list of subpages:
<?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 } ?>
But this code only displays the sub-pages of a particular page parent.
So to recap. I would love to be able to have a sidebar on pages that lists sub-pages AND the page parent in the same list - similar to the way navigation works on http://wordpress.org/about/
What do I need to do to make this happen?