wordpress英文引号变成中文问题

前几天在wordpress上粘贴了一篇重建图标缓存的文章,由于内容带有英文引号,在发表时,程序自动将英文引号改为中文全角引号,导致程序出错,解决方法如下:

1、进入程序后台,打开?wp-includes/formatting.php 文件

2、将如下粗体部分注释掉,保存后即可。

// This is not a tag, nor is the texturization disabled static strings
//$curl = str_replace($static_characters, $static_replacements, $curl);

// regular expressions
//$curl = preg_replace($dynamic_characters, $dynamic_replacements, $curl);