Paginate Child Pages Content on Parent Page
After some searching I was able to find this post: http://wordpress.org/support/topic/add-pagination-to-list-of-child-pages My final code looks like this: <?php $ids = array(); $pages = get_pages(“child_of=”.$post->ID); if ($pages) { foreach ($pages as $page) { $ids[] = $page->ID; } } $paged = (get_query_var(“paged”)) ? get_query_var(“paged”) : 1; $args = array( “paged” => $paged, “post__in” => $ids, “posts_per_page” => … Read more