I am trying to make sure that the google places api is in the theme,
is this the best method
function my_acf_google_api_key( $api ){
$api['key'] = 'zxcexample123';
return $api;
}
add_filter('acf/fields/google_map/api', 'my_acf_google_api_key');
and do I now use the $api_key = acf_get_setting(‘my_acf_google_api_key’);


