Add the following code to your theme’s function.php file, or a functionality plugin to prevent the WordPress Search function from listing Pages.
function SearchFilter($query) {
if ($query->is_search) {
$query->set('post_type', 'post');
}
return $query;
}
add_filter('pre_get_posts','SearchFilter');
Share Your Two Cents