為什麼 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' );