Currently, I am trying to get the link for the parent page to show in a list of its children.
I am using this 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) { ?>
<ul>
<?php echo $children; ?>
</ul>
<?php } ?>
Which, works perfect. However, I want the parent page to show up in the ul as well. However, I DO NOT want an visual hierarchy. To be more precise this is how I wish the pages to display:
Parent Page
Child Page
Child Page
Child Page
Child Page
As opposed to:
Parent Page
-Child Page
-Child Page
-Child Page
-Child Page
Can anyone help me out? Thanks.