Skip to content

Instantly share code, notes, and snippets.

@akther80
Last active March 22, 2023 04:08
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 akther80/7c8e3d4de5d34d669d96235fe77cb797 to your computer and use it in GitHub Desktop.
Save akther80/7c8e3d4de5d34d669d96235fe77cb797 to your computer and use it in GitHub Desktop.
MyTravel - Google map API key
add_filter( 'mytravel_google_api_key', 'mytravel_custom_google_api_key' );
function mytravel_custom_google_api_key( $api_key ) {
$api_key = 'Enter your Map API Key';
return $api_key;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment