how do I exclude child categories from a wp_query?

you can use the 'category__in' in WP_Query;
example:

$feed = WP_Query(array('category__in' => array(102), 'posts_per_page' => 3, 'order' => 'DESC'));