你的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');