越鹰家博客,昨日安装后,出现了和很多WP用户一样的情况,访问网页速度变慢,作为一个新站站长,摸索中一般使用百度,由于太慢,自己开始都准备放弃,最后通过询问醉风云,说是google 被墙的缘故,采用了他提供的方法:
禁用 Google Fonts,将下面的代码加入当前主题的 functions.php 文件:
add_filter( 'gettext_with_context', 'wpjam_disable_google_fonts', 888, 4);
function wpjam_disable_google_fonts($translations, $text, $context, $domain ) {
$google_fonts_contexts = array('Open Sans font: on or off','Lato font: on or off','Source Sans Pro font: on or off','Bitter font: on or off');
if( $text == 'on' && in_array($context, $google_fonts_contexts ) ){
$translations = 'off';
}return $translations;
}
最后很多朋友反映还是很慢,最后我使用了七牛云的镜像存储插件,终于解决了。大家试试效果喔!
使用千牛云的朋友可以去其官方网站:www.qiniu.com
声明:本文为原创文章,版权归越鹰家博客所有,欢迎分享本文,转载请保留出处!