手动修改方式:
找到路径 /wp-content/themes/HighendWP/functions/theme-scripts.php
修改 theme-scripts.php 的第 17 行,代码如下:
wp_enqueue_script( 'hb_gmap', '//www.google.com/jsapi', null, HB_THEME_VERSION, true );
修改 //www.google.com/jsapi
为 #
调整后代码:
wp_enqueue_script( 'hb_gmap', '#', null, HB_THEME_VERSION, true );
这种方法相对有些笨,但有效,不过每次主题升级都需要修改一次。