我想在woo-commerce中创建自定义搜索。我试图创建以下内容,但是它不起作用,这是我的代码示例:
<form method="get" role="search" id="searchform" action="<?php echo home_url( '/' ); ?>">
<input type="text" class="textbox" value='<?php get_search_query();?>' id="s" name='s'
placeholder="Tell us the name">
<input title="Search" value="search" type="submit" class="button">
<input type="hidden" name="post_type" value="product">
</form>
它正在重定向到产品存档页面。