Limit the number of child pages
This is how I solved it: <?php /* Template Name: home */ get_header(); ?> <?php $counter = 1 ?> <div class=”row-fluid”> <?php $args = array( ‘child_of’ => 4, ‘parent’ => 0, ‘post_type’ => ‘page’, ‘post_status’ => ‘publish’ ); $childrens = query_posts(‘showposts=3&post_parent=4&post_type=page&orderby=menu_order&order=DESC’); foreach ( $childrens as $children ) : query_posts(‘showposts=3&post_parent=”.$children->ID.”&post_type=page&orderby=menu_order&order=DESC’); if ( have_posts ) : while … Read more