导读:网站半个多月没有怎么管理,今天进来一看,加载速度非常慢,检查了一下才发现加载了谷歌字体。我记得 3.8 是没加载谷歌字体的,大家都知道上...
我记得 3.8 是没加载谷歌字体的,大家都知道上月低谷歌被封杀了。。。所以现在加载谷歌字体的话,网站打开速度会非常慢个人判定这应该是升级到 3.9 后自动加载的..

解决方法如下 (下面代码添加至 function.php):

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

另外给出去除 wp_head 中无用信息的代码,这样就不会现在网页 head 里面显示 WordPress 版本号、 feed 等地址了

// 去除 wp_head() 中没用的标签
remove_action( 'wp_head', 'wlwmanifest_link' );
remove_action( 'wp_head', 'index_rel_link' );
remove_action( 'wp_head', 'feed_links', 2 );
remove_action( 'wp_head', 'feed_links_extra', 3 );
remove_action( 'wp_head', 'rsd_link' );
remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0 );
remove_action( 'wp_head', 'wp_shortlink_wp_head',10,0 );