Last active
March 12, 2018 15:03
-
-
Save albionselimaj/453140a13a447553b20774ce22a9ac1e to your computer and use it in GitHub Desktop.
Change Google Maps language
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 | |
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