17 lines
388 B
PHP
17 lines
388 B
PHP
<?php
|
|
|
|
add_action( 'wp_enqueue_scripts', 'td_theme_styles' );
|
|
function td_theme_styles() {
|
|
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
|
|
}
|
|
|
|
// Add google API key
|
|
function my_acf_google_map_api( $api ){
|
|
|
|
$api['key'] = 'AIzaSyDHNT102YHu-TP50F78bPyvf5ia6K6cjU8';
|
|
|
|
return $api;
|
|
|
|
}
|
|
|
|
add_filter('acf/fields/google_map/api', 'my_acf_google_map_api');
|