若要在前端中显示Google地图,需要安装并启用“ACF: Google Maps”插件。
1.在functions.php文件中添加以下代码:
add_filter('acf/init', 'my_acf_init');
function my_acf_init() {
acf_update_setting('google_api_key', 'YOUR_API_KEY_HERE');
}
2.在WordPress后台中创建自定义字段并将其类型设置为“Google Map”,然后将其添加到相关职位或文章中。
// 获取Google地图字段的值
$location = get_field('location');
$coords = array(
'lat' => $location['lat'],
'lng' => $location['lng'],
);
3.在需要在前端中显示Google地图的页面中添加以下代码: