Support

Account

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

  • The hook add_filter('acf/fields/taxonomy/wp_list_categories/name=test_tax2' will work on the front end an back end unless you put something in your code to prevent it. For example:

    
    // not in the admin
    if (is_admin()) {
      return $args;
    }