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

时间:2014-08-03 20:25:15   收藏:0   阅读:259

打开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里面添加如下代码:

add_action(‘admin_footer‘, ‘my_disable_jqueryui‘);
function my_disable_jqueryui() {
    remove_all_actions(‘admin_print_footer_scripts‘);
}

 

黄聪:wordpress后台加载ajax.googleapis.com导致打开速度很慢的解决方案,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!