Skip to content

Instantly share code, notes, and snippets.

@spencejs
Created March 23, 2013 03:54
Show Gist options
  • Save spencejs/5226379 to your computer and use it in GitHub Desktop.
Save spencejs/5226379 to your computer and use it in GitHub Desktop.
List Child Pages Only
<?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 class="sectionlist">
<?php echo $children; ?>
</ul>
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment