acf/location/rule_operators/type={$rule[param]}
acf/location/rule_operators/type={$rule[param]}
Appears in: advanced-custom-fields.6.3.5
Hook Type: filter
Displaying hooks found in version: advanced-custom-fields.6.3.5apply_filters('acf/location/rule_operators/type={$rule[param]}') is found 1 times:
- /includes/locations.php line 199195196197198199200201202203204205
* @since 5.6.0
*
* @param
array
$types
The location rule operators.
*/
$operators
= apply_filters(
"acf/location/rule_operators/type={$rule['param']}"
,
$operators
,
$rule
);
$operators
= apply_filters(
"acf/location/rule_operators/{$rule['param']}"
,
$operators
,
$rule
);
$operators
= apply_filters(
'acf/location/rule_operators'
,
$operators
,
$rule
);
return
$operators
;
}
/**