修改WordPress安装目录/wp-includes/formatting.php文件,找到以下4行代码: // static strings $curl = str_replace($static_characters, $static_replacements, $curl); // regular expressions $curl = preg_replace($dynamic_characters, $dynamic_replacements, $curl); 将这红色两行屏闭掉。方法是在$curl = str_… 之前加上 //, 改后如下 // static strings //$curl = str_r […]