Wordpress - 删除特定自定义帖子类型的自动生成段落

时间:2011-10-08 14:29:25

标签: wordpress

我在Wordpress中生成了一些自定义帖子类型,我需要在帖子中添加一些HTML代码。问题是wordpress在我的代码中添加了一些令人讨厌的段落,它破坏了我的界限。有没有办法删除wordpress为这个特定的帖子类型生成的额外段落?

我为帖子和单posttypetype.php文件使用自定义循环,因此我可以完全控制常规输出。

1 个答案:

答案 0 :(得分:11)

您可以通过将此内容添加到主题的functions.php中来删除内容上的wpautop过滤器:

remove_filter('the_content','wpautop');

//decide when you want to apply the auto paragraph

add_filter('the_content','my_custom_formatting');

function my_custom_formatting($content){
if(get_post_type()=='my_custom_post') //if it does not work, you may want to pass the current post object to get_post_type
    return $content;//no autop
else
 return wpautop($content);
}