網站半個多月沒有怎么管理,今天進來一看,加載速度非常慢,檢查了一下才發現加載了谷歌字體。
我記得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 );
新聞熱點
疑難解答