Query does not return content
You shouldn’t be using query_posts() here, but rather WP_Query(). (Search WPSE for query_posts if you want to know wy.) <?php $custom_query_args = array( ‘post_type’ => ‘page’, ‘post_parent’ => ’50’, ‘post_status’ => ‘publish’, ‘orderby’ => ‘menu_order’, ‘order’ => ‘ASC’, ‘posts_per_page’ => ‘100’ ); $custom_query = new WP_Query( $custom_query_args ); // To see the contents of the … Read more