Created
September 9, 2017 05:12
-
-
Save wpflippercode/2818e079d9abe3e00dfbb6087f488729 to your computer and use it in GitHub Desktop.
Modify Featured Image Size in Info Window Message on Google Maps
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_featured_image_size', 'wpgmp_featured_image_size',1,3 ); | |
function wpgmp_featured_image_size($size,$post,$map) { | |
//$size = 'thumbnail'; | |
//$size = 'medium'; | |
$size = array(50,50); | |
return $size; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment