×

wordpress后台打开缓慢的临时解决方法

优畅主题 Wordpress技术 2014-06-26 10:19 3,274 0 条评论

最近打开博客后台,发现后台打开速度很慢。

通过开发者调试工具对网络加载进行检测,发现是由于后台使用了谷歌字体的API。由于谷歌api被墙的缘故,导致我们的浏览器会反复的请求谷歌服务器而无法正常加载页面。

因此简单的解决方案就是禁用谷歌的字体api。

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

//wordpress后台打开缓慢的临时解决方法
class Uctheme_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 Uctheme_Disable_Google_Fonts;

如果本文对你有帮助,你可以扫描右边的二维码打赏,谢谢支持
联系优畅:uctheme#qq.com (#改为@)
微信订阅号:优畅主题(uctheme)
官网淘宝店:http://uctheme.taobao.com
版权声明:版权归 优畅主题 所有,转载请注明出处!
转载请保留链接: https://www.uctheme.com/wordpress/technical/659.html
谢谢支付宝打赏
谢谢微信打赏

品牌创立:2012-11-18优畅主题

优畅主题成立于2012年11月18日,专业Wordpress导购主题开发商,拥有多年Wordpress主题设计经验,专门为淘宝客和导购客站长量身打造高端赚钱模板,我们注重细节,有着严谨的开发态度,一切从客户角度出发,如果你也喜欢 WordPress导购主题,欢迎和我们一起交流!


1 + 2 = ?

目前还没有评。

切换注册

登录

忘记密码 ?

您也可以使用第三方帐号快捷登录

切换登录

注册


Warning: error_log(/www/wwwroot/www.uctheme.com/wp-content/plugins/spider-analyser/#log/log-0810.txt): failed to open stream: Permission denied in /www/wwwroot/www.uctheme.com/wp-content/plugins/spider-analyser/spider.class.php on line 2900