文章目录

前一段时间起就发现打开博客后台速度很慢。

在度娘和谷哥的帮助下了解到可能是谷歌字体的关系,自己用开发者调试工具对网络加载进行检测,发现确实后台使用了谷歌字体的API。谷歌早就被墙了,所以浏览器反复的请求谷歌服务器导致无法正常加载页面,拖慢速度也就是正常的了。

解决方法是在当前主题的functions.php中加入下面的代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
//禁用Open Sans
class Disable_Google_Fonts {
public function __construct() {
add_filter( 'gettext_with_context', array( $this, 'disable_open_sans' ), 888, 4 );
}
public function disable_open_sans( $translations, $text, $context, $domain ) {
if ( 'Open Sans font: on or off' == $context && 'on' == $text ) {
$translations = 'off';
}
return $translations;
}
}
$disable_google_fonts = new Disable_Google_Fonts;

♦ 本文固定连接:https://www.gsgundam.com/archive/2014-10-23-wordpress-backend-too-slow/

♦ 转载请注明:GSGundam 2014年10月23日发布于 GSGUNDAM砍柴工

♦ 本文版权归作者,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接。

♦ 原创不易,如果页面上有适合你的广告,不妨点击一下看看,支持作者。(广告来源:Google Adsense)

♦ 本文总阅读量