Skip to content

Instantly share code, notes, and snippets.

@DrewAPicture
Created April 1, 2013 16:53
Show Gist options
  • Save DrewAPicture/5286151 to your computer and use it in GitHub Desktop.
Save DrewAPicture/5286151 to your computer and use it in GitHub Desktop.
<?php
$children = wp_list_pages(array(
'title_li' => '',
'child_of' => $post_id,
'sort_column' => 'menu_order',
'post_status' => 'publish',
'echo' => 0
) );
$children = get_pages( array(
'child_of' => $post_id,
'sort_column' => 'menu_order',
'hierarchical' => 0,
'depth' => 0
) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment