Skip to content

Instantly share code, notes, and snippets.

@leanda
Created September 24, 2015 10:37
Show Gist options
  • Save leanda/629c907226eb7633975d to your computer and use it in GitHub Desktop.
Save leanda/629c907226eb7633975d to your computer and use it in GitHub Desktop.
Display the longitude and latitude corodinates using ACF and Google Map field.
<?php
$location = get_field('your_location');
if( !empty($location) ):
?>
<?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