Skip to content

Instantly share code, notes, and snippets.

@ramseyp
Created January 26, 2012 19:02
Show Gist options
  • Select an option

  • Save ramseyp/1684396 to your computer and use it in GitHub Desktop.

Select an option

Save ramseyp/1684396 to your computer and use it in GitHub Desktop.
WordPress - list only direct children pages, not all levels of child pages
<?php
/* List only child pages of a page - not grandchildren
*/
?>
<ul class="clearfix">
<?php wp_list_pages( array('title_li'=>'','include'=>get_post_top_ancestor_id()) ); ?>
<?php wp_list_pages( array('title_li'=>'','depth'=>1,'child_of'=>get_post_top_ancestor_id()) ); ?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment