在自定义搜索中检查帖子类型以获取Woocommerce产品属性

时间:2018-12-21 05:37:45

标签: php wordpress methods woocommerce product

我正在建立woocommerce网站。在这里,我提供一个搜索栏,仅搜索产品。

<form action="<?php echo get_site_url() ?>" method="GET">
    <div class="input-group">
         <input type="search" name="s" class="form-control" placeholder="Search Products" required>
         <input type="hidden" name="post_type" value="products" />
         <div class="input-group-btn">
             <button class="btn btn-default" type="submit">
                <i class="fa fa-search" aria-hidden="true"></i>
             </button>
         </div>
    </div>
</form>

以上搜索代码在single-product页中显示。在单个产品页面的侧边栏中,有一个部分显示product attributesattribute terms

以下代码用于在当前页面(product-single)中获得可用的产品尺寸

// get available sizes  for woocommerce sidebar
function getSizes(){
  $sizes = array();
  $codes = array();
  if ( have_posts() ) :
     while ( have_posts() ) : the_post();
     echo get_the_title();
     $product = wc_get_product();
     $attributes = $product -> get_attributes('size');
     foreach ($attributes as $key => $attribute) {
        foreach ($attribute['options'] as $key => $meta) {
          $meta_array = get_term_meta($meta);

          if($meta_array['label']){
            $temp = array();
            $term = get_term($meta);
            foreach ($term as $key => $value) {
              if($key == 'term_id'){
                $temp['term_id'] = $value;
              }
              if($key == 'name'){
                $temp['name'] = $value;
              }
              $temp['attribute'] = 'size';
            }
            foreach ($meta_array['label'] as $key => $value) {
              if (!in_array($value, $codes)){
                $temp['size'] =  $value;
                array_push($sizes,$temp);
                array_push($codes,$value);
              }
            }
          }
        }
     }
   endwhile; endif; return $sizes;
 }

这是我在html中打印它们的HTML-DOM

<ul class="w-woo-inner-box">

  <?php $sizes = getaSizes();
      if(!empty($sizes)):
         foreach ($sizes as $key => $size) { ?>
          <li>
            <label class="checkbox inline-block <?php echo checkurlactive($size['attribute'], $size['term_id']); ?>">
                                  <a href="<?php echo generate_filter_url($size['attribute'], $size['term_id']) ?>">
                                    <input type="checkbox" class="">
                                    <label>&nbsp;</label>
            <span><?php echo $size['size']; ?></span>
            </a>
            </label>
          </li>
        <?php }
       else: ?>
            <li class="no-val-found"><span>No sizes found!</span> </li>
    <?php endif; ?>
</ul>

问题: 那是一个巨大的描述。现在,让我们从上面的代码来看问题,当我搜索existing product name时,它可以正常工作。但是,当我从other post types搜索一些值时,页面上有一个php error提及

Fatal error: Call to a member function get_attributes() on boolean in /..../functions.php on line 482

然后我尝试调试它,发现getSizes()中的以下循环返回了另一个post type values

if ( have_posts() ) :
 while ( have_posts() ) : the_post();

这是什么问题?如何避免搜索其他post type values

1 个答案:

答案 0 :(得分:1)

在功能代码中,您需要在循环之前检查帖子类型,例如:

if ( have_posts() ) :
    while ( have_posts() ) : the_post();

        // Check for "product" post type or continue
        if( 'product' !== get_post_type() ) {
            continue; // jump to next product

        echo get_the_title();

        // Get an instance of the WC_Product Object
        $product = wc_get_product( get_the_id() );
  

这将避免出现错误,因为$product始终是WC_Product对象。


附加奖励:

现在WC_Product method get_attributes()有一个参数$context,该参数可以有2个值:

  • 'view'(默认值)
  • 'edit' (用于后端)
  

但是否: $attributes = $product -> get_attributes('size');

因此,如果要获取特定的属性,可以使用WC_Product method get_attribute() intead,它会提供一个用逗号分隔的术语名称字符串,例如:

        // Get an instance of the WC_Product Object
        $product = wc_get_product( get_the_id() );

        // Loop through 'size' product attribute
        $size_values = $product->get_attribute('size');

        // Convert to an array of term names
        $term_names = (array) explode(', ', $size_values);

        // The product attribute taxonomy (always start with "pa_" + the slug)
        $taxonomy = 'pa_size';

        // Loop through term names
        foreach( $term_names as $term_name ) {
            // Get the WP_Term object (if needed)
            $term = get_term_by( 'name', $term_name, $taxonomy );

            $term_id   = $term->term_id;
            $term_slug = $term->slug;
        }