优选主流主机商
任何主机均需规范使用

如何禁止WordPress自动转换半角和全角字符

找到wp-includes/formatting.php文件中
代码如下:

// 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);

将两行替换函数代码加上注释,在前面加上 //

代码如下:

// 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);

未经允许不得转载:搬瓦工中文网 » 如何禁止WordPress自动转换半角和全角字符