Hi I am trying to exclude custom post category (specific category id) form the search query. My custom post category taxonomy name is review-cat
. I want exclude this custom post taxonomy specific id's.
function wcs_exclude_category_search( $query ) {
if ( $query->is_search ) {
$query->set( 'cat', '-33 -46' );
$query->set( 'post_type', array( 'review' ) );
}
return $query;
}
add_action( 'pre_get_posts', 'wcs_exclude_category_search', 1 );