内容目录
解决办法:
将下面代码添加到主题functions.php文件中:
- function coolwp_remove_open_sans_from_wp_core() {
- wp_deregister_style( ‘open-sans’ );
- wp_register_style( ‘open-sans’, false );
- wp_enqueue_style(‘open-sans’,”);
- }
- add_action( ‘init’, ‘coolwp_remove_open_sans_from_wp_core’ );
上述方法对前台主题加载Google字体无效,国外主题也多采用外链Google字体,自行手动修改模板删除相关代码。
以Wordpress默认主题Twenty Fourteen为例,打开主题functions.php模板文件,查找并删除或者修改成360的cdn 修改谷歌域名为useso.com
- //fonts.googleapis.com/css
其它主题类似,但可能不在functions.php模板中,只能逐一文件查找,只搜索google关键字就可以了。