Skip to content

Instantly share code, notes, and snippets.

@beovulf
Last active February 4, 2016 09:20
Show Gist options
  • Save beovulf/2903e15bf13885d8e8b9 to your computer and use it in GitHub Desktop.
Save beovulf/2903e15bf13885d8e8b9 to your computer and use it in GitHub Desktop.
List of child pages on page
$page_ID = $post->ID;
$args = array(
'child_of' => $page_ID,
// 'authors' => '',
// 'date_format' => '',
'depth' => 1
// 'echo' => '',
// 'exclude' => '',
// 'include' => '',
// 'link_after' => '',
// 'link_before' => '',
// 'post_type' => '',
// 'post_status' => '',
// 'show_date' => '',
// 'sort_column' => '',
// 'title_li' => '',
// 'walker' => ''
);
wp_list_pages($args);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment