Skip to content

Instantly share code, notes, and snippets.

@davemac
Created March 22, 2012 01:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davemac/2155056 to your computer and use it in GitHub Desktop.
Save davemac/2155056 to your computer and use it in GitHub Desktop.
List current page's children
<?php
global $post;
$children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0");
if ($children) { ?>
<ul>
<?php echo $children; ?>
</ul>
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment