Skip to content

Instantly share code, notes, and snippets.

@samholguin
Last active August 29, 2015 14:22
Show Gist options
  • Save samholguin/62080432382b55c4f46c to your computer and use it in GitHub Desktop.
Save samholguin/62080432382b55c4f46c to your computer and use it in GitHub Desktop.
WordPress - Function - Get child pages
/**
* Get child pages
*
* @access public
* @return array
*/
function shgist_get_child_pages() {
global $post;
$args = array(
'post_parent' => $post->ID,
'post_type' => 'page',
'posts_per_page' => -1,
'post_status' => 'publish'
);
return get_children( $args );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment