Skip to content

Instantly share code, notes, and snippets.

@designhash
Created January 31, 2017 02:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save designhash/f889f27259ad9b24b03b2cac82b72aee to your computer and use it in GitHub Desktop.
Save designhash/f889f27259ad9b24b03b2cac82b72aee to your computer and use it in GitHub Desktop.
ACF Map Not displaying in Backend
//add this in the functions.php
function my_acf_google_map_api( $api ){
$api['key'] = 'xxx';
return $api;
}
add_filter('acf/fields/google_map/api', 'my_acf_google_map_api');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment