Skip to content

Instantly share code, notes, and snippets.

@ericjames
Created July 1, 2017 21:25
Show Gist options
  • Save ericjames/648d39b6d0b7ef6cbb4b333d36670d35 to your computer and use it in GitHub Desktop.
Save ericjames/648d39b6d0b7ef6cbb4b333d36670d35 to your computer and use it in GitHub Desktop.
Wordpress Child Page Menu
<?php
if (is_page()) {
$this_page = $post->ID;
if ($post->post_parent) $this_page= $post->post_parent;
$children = get_page_children($this_page, get_pages());
if($children) {
$my_pages .= '<ul>';
$my_pages .= wp_list_pages('title_li=&depth=1&child_of='.$post->ID.'&echo=0');
$my_pages .= '</ul>';
}
}
echo $my_pages;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment