从搜索中排除帖子类型

时间:2012-05-13 11:35:22

标签: wordpress post

我的博客中有几种自定义帖子类型。如何从“搜索”中排除“帖子”类型,以便仅显示我的自定义帖子类型?

1 个答案:

答案 0 :(得分:1)

经过一番挖掘,我找到了答案。只需在搜索表单中添加以下隐藏字段:

<input type="hidden" name="post_type[]" value="custom1" />
<input type="hidden" name="post_type[]" value="custom2" />

这会将搜索仅限制为帖子类型custom1custom2