Skip to content

Instantly share code, notes, and snippets.

@wpflippercode
Created September 14, 2017 07:39
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Insert custom html after google maps container
add_filter('wpgmp_after_map','wpgmp_after_map',1,2 );
function wpgmp_after_map($custom_html,$map) {
$custom_html = "<p class='map-description'>Insert custom html after google maps.</p>";
return $custom_html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment