最近越来越多朋友询问,为什么 WordPress 后台突然变慢了很多。究其原因,还是拜天朝的“长城防火墙”所赐 —— 屏蔽了N多Google的IP——导致WordPress后台无法正常加载 Google Open Sans 字体。现在连Google搜索都无法正常使用了,实在郁闷!这可恶的墙!!
将下面的代码铁入到当前主题的 functions.php 文件:
[cc lang="php"]
// 移除谷歌字体链接 www.thefox.cn
function aivewp_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', 'aivewp_remove_open_sans_from_wp_core' );
[/cc]
◆◆2
发表评论