This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SCF Google Map API Key | |
function my_acf_init() { | |
acf_update_setting('google_api_key', 'YOUR_API_KEY'); | |
} | |
add_action('acf/init', 'my_acf_init'); | |
function us_portfolio_google_map_shortcode() { | |
// Getting an API key | |
$google_api_key = acf_get_setting('google_api_key'); |