Skip to content

Instantly share code, notes, and snippets.

@wpflippercode
Last active September 14, 2017 07:35
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/4c40add5b384b5d71b1c2d82e20fe95b to your computer and use it in GitHub Desktop.
Save wpflippercode/4c40add5b384b5d71b1c2d82e20fe95b to your computer and use it in GitHub Desktop.
Add custom css class to google maps container div
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