Created
October 11, 2017 10:13
-
-
Save wpflippercode/aa861eec6865d3941fd4c535c9878f08 to your computer and use it in GitHub Desktop.
Change Map Language According to Site 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
add_filter('wpgmp_map_lang','wpgmp_map_lang' ); | |
function wpgmp_map_lang($lang) { | |
global $post; | |
if( $post->ID == 96 ) | |
{ | |
$lang = 'hi'; | |
} | |
return $lang; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment