/ Published in: PHP
URL: http://wordpress.org/support/topic/including-the-parent-page-in-a-list-of-subpages
List WordPress subpages and include parent
Expand |
Embed | Plain Text
<?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) { $parent_title = get_the_title($post->post_parent);?> <?php } ?>
You need to login to post a comment.
