You appear to be a bot. Output may be restricted
Description
Return the Google Map API keySince some time in 2016 the Google Maps API has needed an API key. The API key is managed using the Google Developer tools. The value is set using oik options.
Usage
$string = bw_gmap_api_key();
Parameters
Returns
string additional parm for the Google Maps URLSource
File name: oik/shortcodes/oik-googlemap.phpLines:
1 to 8 of 8
function bw_gmap_api_key() { $api_key = null; $key = bw_get_option( "google_maps_api_key" ); if ( $key ) { $api_key = "&key=$key"; } return( $api_key ); }View on GitHub View on Trac