Created
October 2, 2017 17:36
-
-
Save khromov/872e7642f181d959845012091d22d4a6 to your computer and use it in GitHub Desktop.
"Nowhere" location rule for Advanced Custom Fields - never matches
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Advanced Custom Fields: Nowhere location rules | |
Description: Adds a "Nowhere" location rule in ACF | |
*/ | |
add_filter('acf/location/rule_types', function($rules) { | |
$rules['Extra']['nowhere'] = 'Nowhere'; | |
return $rules; | |
}); | |
add_filter('acf/location/rule_operators/nowhere', function($choices) { | |
if(isset($choices['=='])) { | |
unset($choices['==']); | |
} | |
if(isset($choices['!='])) { | |
unset($choices['!=']); | |
} | |
$choices['nowhere'] = '-'; | |
return $choices; | |
}); | |
add_filter('acf/location/rule_values/nowhere', function($choices) { | |
return ['nowhere' => '-']; | |
}); | |
add_filter('acf/location/rule_match/nowhere', function($match, $rule, $options) { | |
return false; | |
}, 10, 3); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
More background: https://support.advancedcustomfields.com/forums/topic/ability-to-leave-a-fields-group-unasigned/