我的博客中有几种自定义帖子类型。如何从“搜索”中排除“帖子”类型,以便仅显示我的自定义帖子类型?
答案 0 :(得分:1)
经过一番挖掘,我找到了答案。只需在搜索表单中添加以下隐藏字段:
<input type="hidden" name="post_type[]" value="custom1" />
<input type="hidden" name="post_type[]" value="custom2" />
这会将搜索仅限制为帖子类型custom1
和custom2
。