Skip to content

Instantly share code, notes, and snippets.

@wpflippercode
Created September 9, 2017 06:08
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/6277d9ed01cb42fca419e84ba307e82b to your computer and use it in GitHub Desktop.
Save wpflippercode/6277d9ed01cb42fca419e84ba307e82b to your computer and use it in GitHub Desktop.
Show Full Post Content in the Infowindow on the Google Maps
add_filter('wpgmp_post_placeholder', 'wpgmp_post_placeholder',1,3 );
function wpgmp_post_placeholder($placeholders,$post,$map) {
// Posts Details
$placeholders['post_excerpt'] = get_the_content($post->ID);
return $placeholders;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment