Skip to content

Instantly share code, notes, and snippets.

@mestrewp
Created May 28, 2012 18:29
Show Gist options
  • Save mestrewp/2820522 to your computer and use it in GitHub Desktop.
Save mestrewp/2820522 to your computer and use it in GitHub Desktop.
Wordpress - show child pages
<? // reference http://codex.wordpress.org/Function_Reference/wp_list_pages
$args = array(
'depth' => 1,
'date_format' => get_option('date_format'),
'child_of' => get_the_ID(),
'title_li' => __(''),
'echo' => 1);
wp_list_pages($args);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment