Skip to content

Instantly share code, notes, and snippets.

@wpflippercode
Created September 14, 2017 06:15
  • 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?
Modify Location Listing below Google Maps using Hook
add_filter('wpgmp_listing','wpgmp_listing',1,2 );
function wpgmp_listing($listing,$map) {
$listing['listing_placeholder'] = "<div class='listing-item'><h4>{marker_title}</h4><p>{marker_address}</p></div>";
return $listing;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment