服务器之家:专注于服务器技术及软件下载分享
分类导航

DEDECMS|帝国CMS|Discuz|PHPCMS|Wordpress|ZBLOG|ECSHOP|苹果CMS|极致CMS|CMS系统|

服务器之家 - 建站程序 - Wordpress - 禁止wordpress自动将半角转换为全角 禁止全角和半角的转换

禁止wordpress自动将半角转换为全角 禁止全角和半角的转换

2019-09-18 13:35wordpress教程网 Wordpress

发布文章时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);

延伸 · 阅读

精彩推荐