Regions | Business Directory https://businessdirectoryplugin.com Create any kind of directory on your site, easily Mon, 20 Mar 2023 16:26:00 +0000 en-US hourly 1 https://businessdirectoryplugin.com/wp-content/uploads/2020/10/cropped-Favicon3-32x32.png Regions | Business Directory https://businessdirectoryplugin.com 32 32 wpbdp_region_find_args https://businessdirectoryplugin.com/knowledge-base/wpbdp_region_find_args/?utm_source=rss&utm_medium=rss&utm_campaign=wpbdp_region_find_args Mon, 15 Mar 2021 06:00:00 +0000 https://businessdirectoryplugin.com/knowledge-base/wpbdp_region_find_args/ This hook can be used to adjust which regions will be included in the list.

The post wpbdp_region_find_args first appeared on Business Directory.]]>
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 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

The post wpbdp_region_find_args first appeared on Business Directory.]]>