怎么样可以禁止代码转义?
我在网上搜了很多方法全都无效,同样的下面这种方法我看网上他们用的最多的,但我用的时候完全无效。
修改 wp-includes/formatting.php 文件,把实现自动替换的相关语句注释掉。
...
这个文件里我始终没有找到网上说的这段代码
求大神帮忙,到底怎么样才能设置代码不会转义??
//取消内容转义
remove_filter('the_content', 'wptexturize');
//取消摘要转义
remove_filter('the_excerpt', 'wptexturize');
//取消评论转义
remove_filter('comment_text', 'wptexturize');
修改 wp-includes/formatting.php 文件,把实现自动替换的相关语句注释掉。
// static strings
//$curl = str_replace($static_characters, $static_replacements, $curl);
// regular expressions
//$curl = preg_replace($dynamic_characters, $dynamic_replacements, $curl);
...
这个文件里我始终没有找到网上说的这段代码
求大神帮忙,到底怎么样才能设置代码不会转义??
共以下 1 个回答:
//取消内容转义
remove_filter('the_content', 'wptexturize');
//取消摘要转义
remove_filter('the_excerpt', 'wptexturize');
//取消评论转义
remove_filter('comment_text', 'wptexturize');
加入到主题目录下的functions.php文件中