Skip to content

Instantly share code, notes, and snippets.

@dgoze
Forked from leanda/acf_lat_lng.php
Created April 30, 2016 05:17
Show Gist options
  • Select an option

  • Save dgoze/c851d7d384cbef4986b70746adb69d06 to your computer and use it in GitHub Desktop.

Select an option

Save dgoze/c851d7d384cbef4986b70746adb69d06 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