Hey Mike 🙂
Congratulations on the new site! If you add the following code to the bottom of your theme’s functions.php file, events should no longer get displayed in your site’s search results. Please try it out and let me know how it works for you. I tested in using the default Twenty Seventeen theme and it worked correctly. Thank you and have a great rest of the day!
function exclude_from_search($query) {
if ($query->is_search) {
$query->set('post_type', array( 'post', 'page' ) );
}
return $query;
}
add_filter('pre_get_posts','exclude_from_search');