在WooCommerce中按WooCommerce类别搜索

时间:2018-12-25 19:47:42

标签: php wordpress woocommerce search-form

我的标题搜索表格出现问题。我有以下代码用于搜索表单:

<div class="et_search_outer">
            <div class="container et_search_form_container">
                <input type="hidden" value="product" name="post_type">
                <form role="search" method="get" class="et-search-form" 
action="<?php echo esc_url( home_url( '/' ) ); ?>">
                <?php
                    printf( '<input type="search" class="et-search-field" 
placeholder="%1$s" value="%2$s" name="s" title="%3$s" />',
                        esc_attr__( 'Search &hellip;', 'Divi' ),
                        get_search_query(),
                        esc_attr__( 'Search for:', 'Divi' )
                    );
                ?>
                </form>
                <span class="et_close_search_field"></span>
            </div>
        </div>

我已将隐藏值添加到表单中:

<input type="hidden" value="product" name="post_type">

但是当在标题中使用搜索表单时,仍将产品和博客文章显示为混合样式。例如,当搜索“囊”以显示this作为结果时,是否可以显示某种形式?我发现this就是很好的例子,效果很好。感谢您的回答。

0 个答案:

没有答案