wordpress主题内容输出时不希望自动添加p标签

Author: 陌小雨Date: 2020-08-31View: 140

如果你不希望wordpress主题文章或者页面在输出的时候不自动添加p标签,那么你可以使用以下的方法:

第一种是在single.php中使用get_the_content()输出文章内容:

echo get_the_content();

第二种是在functions.php中使用

remove_filter( 'the_content', 'wpautop' );