发布内容后,WordPress将通过the_content() 函数。其中有四个,wptexturize()、convert\\u smilies()、convert\\u chars()和wpautop()。所有这些都在wp includes/formatting中定义。php和在wp includes/default过滤器中引用。php。
要删除这些过滤函数,可以通过将其放入函数中来禁用它们。php主题文件:
remove_filter(\'the_content\', \'wpautop\');
remove_filter(\'the_content\', \'wptexturize\');
remove_filter(\'the_content\', \'convert_smilies\');
remove_filter(\'the_content\', \'convert_chars\');
这将删除您在TinyMCE(所见即所得编辑器)中保存的内容与网站前端视图之间的所有格式。欲了解更多关于这些内容的参考,请参阅法典。
我希望这有帮助,祝你好运!