search only posts
modyfikacja wyszukiwania w standardowym search WP poprzez kod dodany w functions.php:
//search only post
function SearchFilter($query) {
if ($query->is_search) {
$query->set('post_type', 'post');
}
return $query;
}
add_filter('pre_get_posts','SearchFilter');
Hope this helps and happy coding :)