Skip to content

Instantly share code, notes, and snippets.

@dgoze
Forked from leanda/acf_map_address.php
Created April 14, 2017 05:22
Show Gist options
  • Select an option

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

Select an option

Save dgoze/f8e6a06135ad103493fce9663f603590 to your computer and use it in GitHub Desktop.
Explode address information ACF Google Map
<?php
$location = get_field('your_location');
if( !empty($location) ):
?>
<?php $location = explode( "," , $location['address']);
echo $location[0].', '; //street number
echo $location[1].','.$location[2]; //city, state + zip
// print_r($location);
?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment