自從谷歌被牆了,就連谷歌字體也鏈接不上了,但是 WordPress 後台和一些外國主題都使用了谷歌字體,谷歌字體鏈接不上自然就導致了 WordPress 奇慢無比,所以在國內使用 WordPress 做的第一件事就是去掉谷歌字體。
將以下代碼添加到當前使用的主題的 functions.php 文件中即可。
代碼預覽
-
//去除谷歌字體 -
if (!function_exists('remove_wp_open_sans')) :
-
function remove_wp_open_sans() {
-
wp_deregister_style( 'open-sans' );
-
wp_register_style( 'open-sans', false );
-
} -
// 前台刪除 Google 字體 CSS -
add_action('wp_enqueue_scripts', 'remove_wp_open_sans');
-
// 後台刪除 Google 字體 CSS -
add_action('admin_enqueue_scripts', 'remove_wp_open_sans');
-
endif;