每次打开wordpress后台发表文章感觉超级慢,用上这个感觉好多了。
在functions.php里添加如下代码:
// 禁用WP Editor 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);
© 版权声明
文章来源于网络收集,如有侵权,请联系删除。
THE END
暂无评论内容