解决WordPress半角引号自动转换为全角引号问题

08-22 | 夜光 | IT记录

解决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);
本文标签:
本文链接: solve-the-half-width-wordpress-quotes-quotes-automatically-converted-to-full-width-problem/
版权所有: 玻璃泉, 转载请注明本文出处。