為什麼 WordPress 後台突然變慢了很多。究其原因,還是拜天朝的 「長城防火牆」 所賜 —— 屏蔽了 N 多 Google 的 IP——導致 WordPress 後台無法正常加載 Google Open Sans 字體。現在連 Google 搜索都無法正常使用了,實在鬱悶!這可惡的牆!!
將下面的代碼鐵入到當前主題的 functions.php 文件:
// 移除谷歌字體鏈接
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' );