WordPress正在替换帖子标题中的双减号,如何禁用它? 时间:2012-02-04 作者:Chris 有时我的帖子标题包含两个负号并排(-),但wordpress总是删除其中一个负号。看起来像:My--Text进入My-Text知道如何禁用它吗?向你问好,克里斯 1 个回复 最合适的回答,由SO网友:Mere Development 整理而成 是的,我相信您可以通过禁用wptexturize功能来阻止这种情况:<?php remove_filter(\'the_content\', \'wptexturize\'); remove_filter(\'the_title\', \'wptexturize\'); ?> 。。。例如您可以将其添加到主题函数中。php文件。http://codex.wordpress.org/Function_Reference/wptexturize 结束 文章导航