WordPress半角引号自动转换为全角引号问题的方法
一、通过修改主题functions.php实现(推荐使用):
在主题functions.php文件中加入以下代码:
/*禁用半角引号自动转换为全角引号*/
remove_filter('the_content','wptexturize');
二、通过修改WP源文件实现:
注释掉 wp-includes\formatting.php文件的下列两行代码即可
$curl = str_replace($static_characters, $static_replacements, $curl);
$curl = preg_replace($dynamic_characters, $dynamic_replacements, $curl);