【发布时间】:2012-11-12 17:03:55
【问题描述】:
我有一个自定义帖子类型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>
是否可以在搜索完成后返回此食谱列表页面并以与列表相同的样式显示结果?
我似乎找不到任何可以让我为自定义帖子类型创建自定义搜索页面的内容。
感谢您的帮助。
【问题讨论】:
标签: wordpress custom-post-type