help with subpage menus
-
I found this little piece of code in the Codex, but I want to modify it so that it will not only show the subpages, but also the parent page. How the heck do that I do that?
<?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 } ?>
You can see how I put it to use here: https://evathir.starshod.net
You have to click on a parent page or its subpages to see.WARNING: I don’t code. I just learn from copying, pasting, and modifying. :]
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘help with subpage menus’ is closed to new replies.