如果你是登陆了后台的 WordPress 用户,你会发现有时候后台很慢,以至于浏览器一直转圈圈就是打开不开。好吧,其实是谷歌字体在作怪,当然如果没有登陆就不会被加载,那么如何去掉 WordPress 后台的谷歌字体呢?

将一下代码加入到你主题的 functions.php 文件里即可。

functionremove_open_sans(){
wp_deregister_style('open-sans');
wp_register_style('open-sans',false);
wp_enqueue_style('open-sans','');
add_action('init','remove_open_sans');

保存刷新即可。