Created
January 21, 2016 20:55
-
-
Save kraftbj/59cb5dcbbab9dd57da62 to your computer and use it in GitHub Desktop.
Preset location
This file contains 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
add_filter( 'job_manager_get_listings_args', 'bk_change_location' ); | |
function bk_change_location( $args ){ | |
$args['search_location'] = 'Anywhere, USA'; // location as a string. | |
return $args; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment