rafaelmaeuer
12/13/2016 - 5:23 PM

Google API Key for Advanced Custom Fields (Wordpress) From https://www.advancedcustomfields.com/resources/google-map/

Google API Key for Advanced Custom Fields (Wordpress) From https://www.advancedcustomfields.com/resources/google-map/

function my_acf_google_map_api( $api ){
	
	$api['key'] = 'xxx';
	
	return $api;
	
}

add_filter('acf/fields/google_map/api', 'my_acf_google_map_api');