wp后台页面切换慢,打开速度慢:jquery-ui.min.css加载失败——在国外
七娃博客1,189人阅读
你的wp主题后台是不是也很慢,转很久就是不切换,那就是这个文件在捣鬼:jquery-ui.min.css,我们仅需将其替换成国内的即可!
将代码复制到fuctions.php文件中:
function hc_cdn_callback($buffer) { return str_replace('code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.min.css', 'cdn.bootcss.com/jqueryui/1.12.1/jquery-ui.min.css', $buffer); } function hc_buffer_start() { ob_start("hc_cdn_callback"); } function izt_buffer_end() { ob_end_flush(); } add_action('init', 'hc_buffer_start');
评论 | 0 条评论
登录之后才可留言,前往登录