我们有一些朋友反馈到,在使用WordPress最新古腾堡编辑器的时候加载很慢,这个原因是因为有默认会有加载谷歌字体的。谷歌字体URL在我们国内无法访问,他是远程调用的。如果我们还继续需要用到古腾堡编辑器的,那就禁止谷歌字体的加载。
// 禁用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);
把代码添加至正在使用的WordPress主题的functions.php里面即可。