如果你在后台使用文本模式编辑文章,且使用<?php the_content(); ?>函数输出文章内容,那么里用<?php the_content(); ?>函数会自动生成<p>标签和<br>标签,如果你不需要这种效果想去除文本模式自动添加<p>,<br>标签,可以使用以下方法。
在你主题的functions.php文件中加入如下代码:
remove_filter ('the_content', 'wpautop'); remove_filter ('comment_text', 'wpautop');