Skip to content

Instantly share code, notes, and snippets.

@albionselimaj
Last active March 12, 2018 15:03
Show Gist options
  • Save albionselimaj/453140a13a447553b20774ce22a9ac1e to your computer and use it in GitHub Desktop.
Save albionselimaj/453140a13a447553b20774ce22a9ac1e to your computer and use it in GitHub Desktop.
Change Google Maps language
<?php
add_action( 'wp_enqueue_scripts', function() {
$language = 'zh-CN';
wp_deregister_script( 'c27-google-maps' );
wp_enqueue_script( 'c27-google-maps', 'https://maps.googleapis.com/maps/api/js?key=' . c27()->get_setting( 'general_google_maps_api_key' ) . '&libraries=places&v=3&language=' . $language, [], null, true );
}, 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment