Skip to content

Instantly share code, notes, and snippets.

@davemac
Forked from billerickson/functions.php
Last active August 29, 2015 14:20
Show Gist options
  • Save davemac/96c788dae34c7579682f to your computer and use it in GitHub Desktop.
Save davemac/96c788dae34c7579682f to your computer and use it in GitHub Desktop.
<?php
$location = get_post_meta( get_the_ID(), 'be_address', true );
echo '<p><a href="https://www.google.com/maps/preview#!q=' . urlencode( $location['address'] ) . '"><img src="http://maps.googleapis.com/maps/api/staticmap?center=' . urlencode( $location['lat'] . ',' . $location['lng'] ). '&zoom=13&size=167x171&maptype=roadmap&sensor=false&markers=color:red%7C' . $location['lat'] . ',' . $location['lng'] . '" /></a></p>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment