Skip to content

Instantly share code, notes, and snippets.

@Dinamiko
Created December 24, 2016 11:41
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 Dinamiko/dddbae8d45a37562e72990ddbdab2b97 to your computer and use it in GitHub Desktop.
Save Dinamiko/dddbae8d45a37562e72990ddbdab2b97 to your computer and use it in GitHub Desktop.
<?php
$location = get_field('post_map');
if( !empty($location) ): ?>
<img style="margin-top:25px;" width="1500" height="250" src="http://maps.googleapis.com/maps/api/staticmap?center=<?php echo $location['lat'];?>,<?php echo $location['lng'];?>&zoom=15&size=1500x250&sensor=false&markers=color:red%7Clabel:%7C<?php echo $location['lat'];?>,<?php echo $location['lng'];?>">
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment