Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save schutzsmith/ba0383b196fdecdeecdaf006d2eb40ca to your computer and use it in GitHub Desktop.
Save schutzsmith/ba0383b196fdecdeecdaf006d2eb40ca 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