Last active
September 14, 2017 07:35
-
-
Save wpflippercode/4c40add5b384b5d71b1c2d82e20fe95b to your computer and use it in GitHub Desktop.
Add custom css class to google maps container div
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_container_class','wpgmp_map_container_class',1,2); | |
function wpgmp_map_container_class($class,$map) { | |
$class="custom_map_css"; | |
return $class; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment