如何解决wordpress自动加上p标签和br标签

如题所述

在functions.php中添加

remove_filter (  'the_content' ,  'wpautop'  );//移除文章p自动标签
remove_filter (  'the_excerpt' ,  'wpautop'  );//移除摘要p自动标签
remove_filter( 'comment_text', 'wpautop',  30 );//取消评论自动<p></p>标签

温馨提示:答案为网友推荐,仅供参考
相似回答