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

2020-12-13 05:52

阅读:574

标签:style   blog   http   color   io   cti   代码   div   

打开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导致打开速度很慢的解决方案,搜素材,soscw.com

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

标签:style   blog   http   color   io   cti   代码   div   

原文地址:http://www.cnblogs.com/huangcong/p/3888694.html


评论


亲,登录后才可以留言!