php WooCommerce产品搜索

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WooCommerce产品搜索相关的知识,希望对你有一定的参考价值。

<h3>Search Products</h3>
    <form role="search" action="<?php echo site_url('/'); ?>" method="get" id="searchform">
    <input type="text" name="s" placeholder="Search our products"/>
    <input type="hidden" name="post_type" value="product" /> <!-- // hidden 'product' value -->
    <input type="submit" alt="Search" value="Search" />
</form>
// Custom Product search
function template_chooser($template)   
{    
  global $wp_query;   
  $post_type = get_query_var('post_type');   
  if( $wp_query->is_search && $post_type == 'product' )   
  {
    return locate_template('search.php');  //  redirect to search.php
  }   
  return $template;   
}
add_filter('template_include', 'template_chooser');  
keyboard_arrow_right

以上是关于php WooCommerce产品搜索的主要内容,如果未能解决你的问题,请参考以下文章

php WooCommerce产品搜索

php WooCommerce搜索产品按类别下拉列表

php WooCommerce产品搜索过滤器标记

php 必须使用搜索结果产品存档模板与WooCommerce一起工作

WooCommerce 搜索结果模板

如何编辑WooCommerce搜索字段占位符?