Skip to content

Instantly share code, notes, and snippets.

@wpflames
Created February 4, 2022 08:15
Show Gist options
  • Select an option

  • Save wpflames/0e1edbbd79eced1aa17a2614f1ac1d8f to your computer and use it in GitHub Desktop.

Select an option

Save wpflames/0e1edbbd79eced1aa17a2614f1ac1d8f to your computer and use it in GitHub Desktop.
How to add Google Maps API Key to WordPress
function addGoogleMapsKey($api) {
$api['key'] = 'your_api_key';
return $api;
}
add_filter('acf/fields/google_map/api', 'addGoogleMapsKey');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment