Created
September 14, 2017 07:39
-
-
Save wpflippercode/56b1d7853cd7fede2ec58a9a0495b1b9 to your computer and use it in GitHub Desktop.
Insert custom html after google maps container
This file contains 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_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