Last active
September 9, 2015 09:01
-
-
Save mikejolley/49713521c5b3ec273f69 to your computer and use it in GitHub Desktop.
Add a region bias when geocoding addresses.
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: Listify Region Bias | |
*/ | |
function listify_region_bias() { | |
return 'country_code'; | |
} | |
add_filter( 'job_manager_geolocation_region_cctld', 'listify_region_bias' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment