Hi All,
PHP noob here...I want to list parent page and subpages even when on a subpage and dynamically highlight the list item of the current page by adding a class "current". Does that make sense? Any thoughts or ideas?
This currently just list subpages:Code PHP:<?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 class="submenu"> <?php echo $children; ?> </ul> <?php } ?>



...I want to list parent page and subpages even when on a subpage and dynamically highlight the list item of the current page by adding a class "current". Does that make sense? Any thoughts or ideas?







Bookmarks