Skip to content

Instantly share code, notes, and snippets.

@kraftbj
Created January 21, 2016 20:55
Show Gist options
  • Save kraftbj/59cb5dcbbab9dd57da62 to your computer and use it in GitHub Desktop.
Save kraftbj/59cb5dcbbab9dd57da62 to your computer and use it in GitHub Desktop.
Preset location
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