使用过WordPress古腾堡编辑器的朋友应该知道,这款编辑器在打开的时候加载会很慢,甚至连发表文章都困难,是什么原因导致的呢?
加载慢是因为古腾堡编辑器加载了谷歌字体CSS,所以只要我们禁止加载谷歌字体,速度自然而然就会快些了。文章源自零捌陆工作室-https://www.086026.com/61.html
古腾堡禁止加载谷歌字体的方法很简单,把下面代码添加至正在使用的WordPress主题的functions.php里面即可。文章源自零捌陆工作室-https://www.086026.com/61.html
// 禁用WP编辑器加载Google字体css
function xintheme_remove_gutenberg_styles($translation, $text, $context, $domain)
{
if($context != 'Google Font Name and Variants' || $text != 'Noto Serif:400,400i,700,700i') {
return $translation;
}
return 'off';
}
add_filter( 'gettext_with_context', 'xintheme_remove_gutenberg_styles',10, 4);
来源:有个主题文章源自零捌陆工作室-https://www.086026.com/61.html 文章源自零捌陆工作室-https://www.086026.com/61.html
我的微信
我的微信
微信扫一扫
评论