一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

解决wordpress3.9.1版本后台打开缓慢

时间:2014-09-16 编辑:简简单单 来源:一聚教程网

其原因很简单,目前国内正在整治色情行业,避免不了会伤到谷歌。就连最近的谷歌seo/seo.html" target="_blank">搜索引擎地址都很难打开。

解决方法只有禁止加载Google Open Sans 字体

代码:

在主题中的functions.php文件末尾加上:

function remove_open_sans(){
wp_deregister_style('open-sans');
wp_register_style('open-sans',false);
wp_enqueue_style('open-sans','');}
add_action('init','remove_open_sans');
在打开wordpress后台试试,是不是快了好几倍。

热门栏目