wordpress后台打开缓慢的解决方法(临时)
Wordpress后台打开慢,所以有很多盆友遇到过这个问题。如果只是想暂时处理,可以参考以下方法,可能对大家有帮助。
近期打开blog后台,发觉后台打开速率比较慢。
根据开发人员调节专用工具对互联网载入开展检验,发觉是因为后台应用了谷歌字体的API。因为Googleapi
网站被封的原因,造成大家的电脑浏览器会不断的要求
谷歌服务器而没法一切正常载入网页页面。
因而简易的解决方法便是禁止使用Google的字体样式api。
解决方案是加上下边的主题在现阶段的编码在functions.php:
PHPCode拷贝內容到剪贴板
//禁止使用开放的San
classDisable_Google_Fonts{
公共函数__construct(){
add_filter('gettext_with_context',array($this,'disable_open_sans'),888,4);
}
公共函数disable_open_sans($translations,$text,$context,$domain){
if('OpenSansfont:on或off'==$context&&on'==$text){
$translations='off
}
return$translations
}
}
$Disable_Google_Fonts=newDisable_Google_Fonts;
评论列表(0条)