WordPress 后台加载异常缓慢,经常卡在 fonts.googleapis.com 这是由于外链加载了谷歌字体严重影响页面加载速度,因谷歌字库中只有英文对国内用户无任何用处禁掉最实用,荒岛本次带来 WordPress 禁止后台加载谷歌字体的教程,只要将下面的代码添加到主题的「functions.php」文件即可。宝藏来自荒岛 - 一座藏有宝藏的小岛-https://x-imagine.com/wordpress-disable-background-loading-of-google-fonts.html
// 荒岛一座藏有宝藏的小岛 function wp_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', 'wp_remove_open_sans_from_wp_core' );宝藏来自荒岛 - 一座藏有宝藏的小岛-https://x-imagine.com/wordpress-disable-background-loading-of-google-fonts.html
请按 Ctrl+D 收藏荒岛分享给好友 如您发现本文件已经失效无法下载请联系站长修正
- 荒岛公众号
- 扫一扫关注
- 荒岛小程序
- 扫一扫关注
评论