Guest User

Untitled

a guest
Jul 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2. if($post->post_parent)
  3. $children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0"); else
  4. $children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0");
  5. if ($children) { ?>
  6. <ul>
  7. <?php echo $children; ?>
  8. </ul>
  9. <?php } ?>
Add Comment
Please, Sign In to add comment