It certainly does. Thanks Otto42. Appreciate your help.
I figured some of this. On wp codex site. To list all children pages at the same level:
<?php if($post->post_parent)
$children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0&sort_column=menu_order");
else $children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0&sort_column=menu_order");
if ($children) { ?>
<ul><?php echo $children; ?></ul><?php } ?>
I also want to display a meta value (icon-image) associated with each page along with the list. Can anyone shed light on this? How do I pick up meta value while using the wp_list_pages function.
cheers
hd
Wonderful.. it works!
Thank you so much for the response filosofo.