Skip to content

Instantly share code, notes, and snippets.

@wpflippercode
Created October 11, 2017 10:13
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 wpflippercode/aa861eec6865d3941fd4c535c9878f08 to your computer and use it in GitHub Desktop.
Save wpflippercode/aa861eec6865d3941fd4c535c9878f08 to your computer and use it in GitHub Desktop.
Change Map Language According to Site Language
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