I figured it out, I used the following code to add my custom post types to search:
//Add Custom Post Types to Search
//function filter_search($query) {
// if ($query->is_search) {
// $query->set('post_type', array('post', 'employee', 'project', 'recprogram', 'partner', 'destination', 'event'));
// };
// return $query;
//};
//add_filter('pre_get_posts', 'filter_search');
oops…