If you need to display only certain post type ( page, post, custom post) you need to add this to function.php
function searchfilter($query) {
 
    if ($query->is_search && !is_admin() ) {
        $query->set('post_type',array('post','page'));
    }
 
return $query;
}
 
add_filter('pre_get_posts','searchfilter')
On line 4 change what post type you need.