0

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

4

1 回答 1

1

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

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

这将搜索仅限于帖子类型custom1custom2.

于 2012-05-13T11:54:36.950 回答