Adds a Location field to Advanced Custom Fields. This field allows you to find addresses and coordinates of a desired location.
This is an add-on for the Advanced Custom Fields WordPress plugin and will not provide any functionality to WordPress unless Advanced Custom Fields is installed and activated.
The Location field provides:
- a search field where you can type in some coordinates or an address and hit
Enter
. - a Google map which you can click at the desired location.
In both cases, Google will find the location and return the coordinates and the complete address, if you want it complete. A marker will be added at the desired location.
http://wordpress.org/extend/plugins/advanced-custom-fields-location-field-add-on/
https://github.com/julienbechade/acf-location-field
https://github.com/julienbechade/acf-location-field/issues
Make sure you read the Advanced Custom Fields's documentation first.
The Location field comes with 3 options:
- The map address let you choose the value(s) to return on the front-end:
- Coordinates and address (default)
- Coordinates only
- The map center let you set the coordinates used to center the initial blank map.
- The map zoom.
Retrieving the value(s) on the front-end differs according to the Map address options.
- Coordinates and address (default)
<?php
$location = get_field('location');
echo $location['address'];
echo $location['coordinates'];
?>
- Coordinates only
<?php the_field('location'); ?>
The Location Field plugin can be used as a WordPress plugin or included in other plugins or themes.
There is no need to call the Advanced Custom Fields register_field()
method for this field.
- WordPress plugin
- Download the plugin and extract it to
/wp-content/plugins/
directory. - Activate the plugin through the
Plugins
menu in WordPress.
- Download the plugin and extract it to
- Added to Theme or Plugin
- Download the plugin and extract it to your theme or plugin directory.
- Include the
location-field.php
file in you theme'sfunctions.php
or plugin file.
include_once( rtrim( dirname( __FILE__ ), '/' ) . '/acf-location-field/location-field.php' );
Make sure you have Advanced Custom Fields installed and activated. This is not a standalone plugin for WordPress, it only adds additional functionality to Advanced Custom Fields.
- Initial release
To Zvonko Biskup –aka @codeforest– who developed the first version of this add-on.