打开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导致打开速度很慢的解决方案
时间: 2024-10-04 21:52:26