【发布时间】:2012-04-13 20:30:33
【问题描述】:
我已经添加了 remove_filter ('the_content', 'wpautop');在 functions.php 中,但仍然在内容中获得额外的 p 和 br 标记。
【问题讨论】:
标签: wordpress formatting
我已经添加了 remove_filter ('the_content', 'wpautop');在 functions.php 中,但仍然在内容中获得额外的 p 和 br 标记。
【问题讨论】:
标签: wordpress formatting
使用
echo get_the_content();
改为
the_content();
在您的主题中
【讨论】:
你发布的内容是否已经有这些额外的
和
标签还是在您查询它们时自动生成?
【讨论】: