最新最有效的禁止WordPress后台加载谷歌字体方法

博客刚安装上,写了几篇文章,明显的感觉博客打开速度象蜗牛一样,于是打开chrom调试模式,发现google字体还在加载中,突然就发现了生在天朝的美好。

于是我就给模版中的 function.php文件中添加了一下几行代码

1
2
3
4
5
6
function coolwp_remove_open_sans_from_wp_core() {
wp_deregister_style( 'open-sans' );
wp_register_style( 'open-sans', false );
wp_enqueue_style('open-sans','');
}
add_action( 'init', 'coolwp_remove_open_sans_from_wp_core' );

再重新打开博客,完美!