由于在Wordpress中很多地方用到了google的字体,加上最近我朝又在全面禁用google的服务,直接导致了博客访问慢的无法忍受。没办法只有割爱,先临时禁用google的字体。方法如下:

方法一:在functions.php中注释掉,vim打开functions.php文件,搜索googleapis, 加//注释即可,代码如下:

function wpan_fonts() {
$protocol = is_ssl() ? ‘https’ : ‘http’;
    //</strong>wp_register_style( ‘underthesea-portlligatsans’, “$protocol://fonts.googleapis.com/css?family=Port+Lligat+Sans” );
    //</strong>wp_register_style( ‘underthesea-oswald’, “$protocol://fonts.googleapis.com/css?family=Oswald:400,700,300″ );
    //</strong>wp_register_style( ‘underthesea-pacifico’, “$protocol://fonts.googleapis.com/css?family=Pacifico” );
}
方法二:使用插件

使用插件Remove Open Sans font from WP core,非常给力。使用插件也有一定的好处,就是你下次更新wordpress 的时候不需要再重新更改functions.php代码。

以上两种方式均能明显改善博客打开的速度,有需要的朋友不妨试试。