1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| <?php
/*
Plugin Name: Advanced Custom Fields: Address
Plugin URI: https://github.com/strickdj/acf-field-address
Description: An Advanced Custom Field for working with address information.
Version: 5.0.6
Author: Daris Strickland
Author URI: http://daris-strickland.com/
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
define('ACF_ADDRESS_PLUGIN_PATH', plugin_dir_path(__FILE__));
define('ACF_ADDRESS_PLUGIN_URL', plugins_url('', __FILE__));
//var_dump(ACF_ADDRESS_PLUGIN_PATH);
//var_dump(ACF_ADDRESS_PLUGIN_URL);
//die();
require "bootstrap.php"; |
Partager