Page to output sub-pages (children)

You can use for example very basic WP Query (or get_pages or what ever. this is just one example) (http://codex.wordpress.org/Class_Reference/WP_Query) // The Query $currentPageId = $post->ID; // get current page id inside loop $args = array( ‘post_parent’ => $currentPageId, ‘post_type’ => ‘page’, ‘posts_per_page’ => -1 ); $query = new WP_Query( $args ); // The Loop … Read more