Skip to content

Instantly share code, notes, and snippets.

@wpflippercode
Created September 9, 2017 05:33
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/462375a196c6d52a7ed3554b7b6b21be to your computer and use it in GitHub Desktop.
Save wpflippercode/462375a196c6d52a7ed3554b7b6b21be to your computer and use it in GitHub Desktop.
Show random image in the infowindow message on the google maps
add_filter('wpgmp_featured_image', 'wpgmp_featured_image',1,3 );
function wpgmp_featured_image($image,$post_id,$map_id) {
// Modify img tag containing featured image.
$image = '<img src="http://lorempixel.com/400/200/" />';
return $image;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment