我有一个插件可以在 WordPress 中显示优惠券代码列表。我想在优惠券页面中放置用于搜索优惠券代码的搜索框。
<form method="get" id="searchform" action="">
<input type="text" value="Search" name="s" id="s" />
<input type="hidden" name="cat" value="5" />
<input type="submit" id="searchsubmit" value="Search" />
</form>
当我点击搜索按钮时,它会将我重定向到 wordpress 帖子页面而不是插件默认页面。
建议我在插件页面中实现搜索的工作解决方案。