Support

Account

Home Forums Feature Requests Location = "Nowhere" Reply To: Location = "Nowhere"

  • This Works

    
    add_filter('acf/location/rule_values/post_type', 'acf_location_rules_values_post_type');
    
    function acf_location_rules_values_post_type($choices) {
      $choices['none'] = 'None of the Above';
      return $choices;
    }
    
    add_filter('acf/location/rule_match/post_type', 'acf_location_rules_match_none', 10, 3);
    
    function acf_location_rules_match_none($match, $rule, $options) {
      return -1;
    }