Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created March 23, 2016 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikejolley/674f1b57e8a1390a8fd8 to your computer and use it in GitHub Desktop.
Save mikejolley/674f1b57e8a1390a8fd8 to your computer and use it in GitHub Desktop.
WP Job Manager Geolocation - Set language
// Add to theme functions.php
add_filter( 'job_manager_geolocation_endpoint', 'change_geocode_lang' );
function change_geocode_lang( $endpoint ) {
// Use language from https://developers.google.com/maps/faq#using-google-maps-apis
return add_query_arg( 'language', 'en-GB', $endpoint );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment