/ Published in: PHP
URL: http://wphacks.com/page-sensitive-multi-level-navigation/
Display sub-pages of the current page you are on in the left nav and once you hit the bottom of the hierarchy, show pages which are parallel to that page within the same branch of the hierarchy.
Expand |
Embed | Plain Text
<?php $children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0&depth=1"); if ($children == "") $children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0&depth=1"); ?> <ul> </ul> <?php endif; ?>
You need to login to post a comment.
