wordpress后台加载ajax.googleapis.com导致打开速度很慢的解决方案


打开wordpress后台,发现很卡,通过开发者工具看到是因为加载http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/themes/smoothness/jquery-ui.css这个元素导致的。

<link rel='stylesheet' id='jquery-ui-smoothness-css'  href='http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/themes/smoothness/jquery-ui.css' type='text/css' media='all' />

 

解决方案:

functions.php里面添加如下代码:

wordpress后台加载ajax.googleapis.com导致打开速度很慢的解决方案
wordpress后台加载ajax.googleapis.com导致打开速度很慢的解决方案
function hc_cdn_callback($buffer) {
    return str_replace('googleapis.com', 'useso.com', $buffer);
}
function hc_buffer_start() {
    ob_start("hc_cdn_callback");
}
function izt_buffer_end() {
    ob_end_flush();
}
add_action('init', 'hc_buffer_start');
add_action('shutdown', 'hc_buffer_end');
wordpress后台加载ajax.googleapis.com导致打开速度很慢的解决方案

 

wordpress后台加载ajax.googleapis.com导致打开速度很慢的解决方案



本文转自黄聪博客园博客,原文链接:http://www.cnblogs.com/huangcong/p/3888694.html如需转载请自行联系原作者
上一篇:9月19日云栖精选夜读 | 云栖大会马云演讲:以前制造业靠电,未来靠数据


下一篇:解决Android平台布局xml文件的error parsing xml unbound prefix错误