[snippet] Add the cpt in the search
Closed this issue · 0 comments
Mte90 commented
<?php
function filter_search($query) {
if ($query->is_search) {
$query->set('post_type', array('post', 'your-custom-type'));
};
return $query;
};
add_filter('pre_get_posts', 'filter_search');