Skip to content

Instantly share code, notes, and snippets.

@raco
Created December 9, 2016 08:13
Show Gist options
  • Save raco/05cc83685ca018d15e0ed6724dc85866 to your computer and use it in GitHub Desktop.
Save raco/05cc83685ca018d15e0ed6724dc85866 to your computer and use it in GitHub Desktop.
ACF: Render Map
<?php
$location = get_field('location');
if( !empty($location) ):
?>
<div class="acf-map">
<div class="marker" data-lat="<?php echo $location['lat']; ?>" data-lng="<?php echo $location['lng']; ?>"></div>
</div>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment