Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colegeissinger/3c004191af7fe206a68a to your computer and use it in GitHub Desktop.
Save colegeissinger/3c004191af7fe206a68a to your computer and use it in GitHub Desktop.
Build a Dynamic Sub-nav for Child Pages EG 01
<?php
global $post;
if($post->post_parent) {
$parent_id = get_post_ancestors($post->ID);
$id = end($parent_id);
} else {
$id = $post->ID;
}
wp_list_pages('title_li=&child_of=' . $id);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment