Hi Marion!!
Try placing the following code snippet into your theme’s functions.php file:
function exclude_from_search($query) {
if ($query->is_search) {
$query->set('post_type', 'post');
}
return $query;
}
add_filter('pre_get_posts','exclude_from_search');