Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author TC.K

    (@wp_dummy)

    Yes,you can use ‘ajax_wpqsf_query()’ filter to add the category you want to exclude.

    eg.

    add_filter('ajax_wpqsf_query', 'exclude_search_cat');
    function exclude_search_cat($args){
       $args['category__not_in'] = array(1,2,3);//category id you want to exclude
       return $args;
    }

    where in the file

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Excluding specific categories’ is closed to new replies.