wp_list_pages help me!!!
-
I want to list the child pages of the parent but don’t want to go any further e.g
Parent—->Child
But with the code below I get.
Parent—->Child—->Grandchild—->Great Grandchild etc…
<?php $children = wp_list_pages('title_li=&child_of='.$post->ID.'&echo=0'); if ($children) { ?> <ul> <?php echo $children; ?> </ul> <?php } ?>
Could someone help me out please.
- The topic ‘wp_list_pages help me!!!’ is closed to new replies.