In default wordPress setting when we search anything from wordPress we found both pages and post but to exclude pages and only include post we need to add following code in function.php file

Code:
function vibeExcludePages($query) {
if ($query->is_search) {
$query->set('post_type', 'post');
}
return $query;
}
add_filter('pre_get_posts','vibeExcludePages');
Resource:wptidbits.com