acf/location/rule_types
The Advanced Custom Fields acf location rule types hook.
Description
Parameters (1)
- 0. $choices (unknown)
- The choices.
Usage
- To run the hook, copy the example below.
- $choices = apply_filters( 'acf/location/rule_types', $choices );
- if ( !empty( $choices ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the acf/location/rule_types callback
- function filter_acf_location_rule_types( $choices ) {
- // make filter magic happen here...
- return $choices;
- };
- // add the filter
- add_filter( 'acf/location/rule_types', 'filter_acf_location_rule_types', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'acf/location/rule_types', 'filter_acf_location_rule_types', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /core/views/meta_box_location.php
- $choices = apply_filters( 'acf/location/rule_types', $choices );