Support

Account

Home Forums ACF PRO Exclude taxonomy terms from frontend display Reply To: Exclude taxonomy terms from frontend display

  • Solved it with a filter.

    add_filter('acf/fields/taxonomy/wp_list_categories', 'my_taxonomy_args', 10, 2);
    
    function my_taxonomy_args( $args, $field )
    {
       $args['exclude'] = array(16, 15, 17); //the IDs of the excluded terms
        return $args;
    }