这是我根据这个发现的question at Stack Overflow
您必须完全删除wpautop,然后在需要时将其重新添加,这一点我在链接的评论中表示同意,这很不幸:
remove_filter(\'the_content\', \'wpautop\');
remove_filter(\'the_excerpt\', \'wpautop\');
/** Change How The Content Works **/
function no_content_autop($content){
global $post;
if($post->post_type != \'services\')
return wpautop($content);
return $content;
}
add_filter(\'the_content\',\'no_content_autop\');
/** Change How The Excerpt Works **/
function no_excerpt_autop($content){
global $post;
if($post->post_name != \'services\')
return wpautop($content);
return $content;
}
add_filter(\'the_excerpt\',\'no_excerpt_autop\');
这个问题很老了,所以你可能想看一两天这个问题,看看是否有人想出了一个更好的答案。