April 22, 2015
This attribute needs to be fed an array, even if a single item is being called, or it will not function properly:
global $post; $args = array( 'post_type' => 'page', 'posts_per_page' => -1, 'post_parent' => $post->ID, 'post__not_in' => array(6), 'orderby' => 'menu_order', 'order' => 'ASC' ); $who_is = new WP_Query($args);