【技术分享】WordPre后台加速优化:禁止加载谷歌字体(Open San)代码教程

安鹿知道,技术教程使用WordPress的分享人会担心后台加载速度慢 ,因为前台访问速度非常快,后化禁但是台加体后台访问速度非常慢,真正的速优原因是WordPress默认加载GoogleFont(Google字体)。

众所周知,止加载谷在国际环境中访问谷歌是歌字不可能的。因为有防火墙阻止外国网站,代码当你使用Wordpress时 ,技术教程你默认加载谷歌,分享因为它不能被墙加载 ,后化禁导致访问速度变慢  。台加体

既然在国内无法访问 ,速优然后我们又在国内,止加载谷那么就需要将这个功能禁止 ,歌字然后就这样。

下面代码增补网站主题的functions.php文件中

function coolwp_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, coolwp_remove_open_sans_from_wp_core);
function coolwp_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, coolwp_remove_open_sans_from_wp_core );
function coolwp_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, coolwp_remove_open_sans_from_wp_core );
渝ICP备2025076537号-22