導讀:網站半個多月沒有怎麼管理,今天進來一看,加載速度非常慢,檢查了一下才發現加載了谷歌字體。我記得 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 );