Heads up!
This article contains PHP code and is intended for developers. We offer this code as a courtesy, but don't provide support for code customizations or 3rd party development.
This article contains PHP code and is intended for developers. We offer this code as a courtesy, but don't provide support for code customizations or 3rd party development.
This hook can be used to adjust which regions will be included in the list.
Usage
add_filter( 'wpbdp_region_find_args', 'my_custom_function' );
Parameters
- $args (array)
Examples
Include region
This example will include an extra region
add_filter( 'wpbdp_region_find_args', 'include_region' );
function include_region( $args ) {
$args['include'] = '46'; //replace the value 46 with the id of the region you want to include
return $args;
}
Exclude region
This example will exclude an extra region
add_filter( 'wpbdp_region_find_args', 'exclude_region' );
function exclude_region( $args ) {
$args['exclude'] = '46'; //replace the value 46 with the id of the region you want to exclude
return $args;
}
Change Log
Added in version 5.2
