Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2013
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 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");
  4. else
  5. $children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0");
  6. if ($children) { ?>
  7. <ul>
  8. <?php echo $children; ?>
  9. </ul>
  10. <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement