我想将帖子搜索链接重定向到搜索产品WooCommerce?

时间:2020-02-10 作者:Phạm Anh Tú

帖子的搜索结果链接:https://domain.com/?s=item+item

我想在单击搜索时,文章搜索链接会自动重定向到产品woocommerce搜索链接:https://domain.com/?s=item+item&post_type=product

我们希望您的帮助,谢谢!!!

1 个回复
最合适的回答,由SO网友:Tanmay Patel 整理而成

我认为,您只需要在提交按钮代码上方添加以下代码searchform.php 文件

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

相关推荐

Live search by custom tag

实时搜索:$the_query = new WP_Query( array( \'s\' => esc_attr( $_POST[\'keyword\'] ), \'post_type\' => \'custom_type\', \'sentence\' => \'true\' )); if( $the_query->have_posts() ) : while( $the_query->have_posts() ): $the_query->t