我有一个自定义帖子类型,它使用模板recipes
在网站上显示食谱的分页列表。archive-recipes.php
我需要能够使用页面顶部的搜索表单来搜索这些食谱:
<form role="search" method="get" class="searchbox" action="/recipes/">
<input type="text" class="textbox strong" name="s" id="s" value="" placeholder="Search..." />
<input type="hidden" name="post_type" value="recipes" />
<button type="submit" class="button icon"></button>
</form>
搜索完成后是否可以返回此食谱列表页面并以与列表相同的样式显示结果?
我似乎找不到任何可以让我为自定义帖子类型创建自定义搜索页面的东西。
谢谢你的帮助。