仅在父类中搜索产品

时间:2014-10-15 01:54:07

标签: wordpress woocommerce

如何编辑下面的搜索表单,仅搜索woocommerce上的特定类别?

    <form role="search" method="get" id="searchform" action="http://url-is-here.com">
        <div>
            <label class="screen-reader-text" for="s">Search for:</label>
            <input type="text" value="" name="s" id="s" placeholder="Search for products" />
            <input type="submit" id="searchsubmit" value="Search" />
            <input type="hidden" name="post_type" value="product" />
        </div>
    </form>

1 个答案:

答案 0 :(得分:0)

你有没有尝试过:

<form role="search" method="get" id="searchform" action="http://url-is-here.com">
    <div>
        <label class="screen-reader-text" for="s">Search for:</label>
        <input type="text" value="" name="s" id="s" placeholder="Search for products" />
        <input type="submit" id="searchsubmit" value="Search" />
        <input type="hidden" name="post_type" value="product" />
        <input type="hidden" name="cat" id="cat" value="5" />
    </div>
</form>

这应该将结果限制为id为5的类别。