禁止古腾堡编辑器加载谷歌字体

每次打开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
点赞0赞赏 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容