Skip to content

Instantly share code, notes, and snippets.

@wpflippercode
Created September 14, 2017 07:39
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/56b1d7853cd7fede2ec58a9a0495b1b9 to your computer and use it in GitHub Desktop.
Save wpflippercode/56b1d7853cd7fede2ec58a9a0495b1b9 to your computer and use it in GitHub Desktop.
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