扫描微信
2

fun88体育 技巧:禁用 Google Fonts,加快 fun88体育 后台打开速度

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