Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的博客中有几种自定义帖子类型。如何从搜索中排除帖子类型,以便仅显示我的自定义帖子类型?
经过一番挖掘,我找到了答案。只需在搜索表单中添加以下隐藏字段:
<input type="hidden" name="post_type[]" value="custom1" /> <input type="hidden" name="post_type[]" value="custom2" />
这将搜索仅限于帖子类型custom1和custom2.
custom1
custom2