去掉WordPress中the_excerpt和the_content的自动
WordPress的内置函数中包括了:
the_excerpt(摘要输出)
the_content(正文输出)
两个文章函数,但是以上标签在使用时会自动为其内容包裹<p>标签
在查阅了官方手册后发现有最新的解决办法
https://codex.wordpress.org/Function_Reference/wpautop
- remove_filter( 'the_content', 'wpautop' ); //去除正文P标签包裹
- remove_filter( 'the_excerpt', 'wpautop' );//去除摘要P标签包裹
还没有任何评论,你来说两句吧