Skip to content

Instantly share code, notes, and snippets.

@hsquareweb
Created June 5, 2012 21:51
Show Gist options
  • Select an option

  • Save hsquareweb/2878281 to your computer and use it in GitHub Desktop.

Select an option

Save hsquareweb/2878281 to your computer and use it in GitHub Desktop.
WP: Display children of parent page
<div class="side-nav">
<?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>
<?php echo $children; ?>
</ul>
<?php } ?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment