Skip to content

Instantly share code, notes, and snippets.

@mishterk
Last active August 20, 2023 19:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mishterk/3d06a07158608197f8165b96bc6b1129 to your computer and use it in GitHub Desktop.
Save mishterk/3d06a07158608197f8165b96bc6b1129 to your computer and use it in GitHub Desktop.
Register Google Maps API Key for ACF
<?php
// Define this in the site's wp-config.php file.
define('GOOGLE_API_KEY', 'your-google-api-key-here');
// Add this to your functions.php file, or a config plugin/MU plugin.
add_filter( 'acf/fields/google_map/api', function ( $api ) {
$api['key'] = GOOGLE_API_KEY;
return $api;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment