2017-07-21 3 views
1

これは私が映像作曲家のために作ったショートコードです。それは私のwoocommerceのカテゴリを販売しているが、私はどのように私はそれを停止するだろうサブカテゴリーを表示し、メインカテゴリを表示することはできません。WooCommerceのみを表示製品のカテゴリー

アイデア?

$term_args = array(
    'parent' => 0, 
    'hide_empty' => $empty , 
    'number' => $num , 
    'order_by' => $sort , 
    'order' => $order, 
); 

$terms = get_terms('product_cat', $term_args); 

次に、あなただけのサブカテゴリせずにメインの製品カテゴリを取得する:あなたが'parent'引数この方法を追加する必要がある唯一の主要製品のカテゴリを表示するには

おかげ

<?php //wp_enqueue_script(array('jquery', 'owl-carousel')); 
    $count = 0; 
    $term_args = array('hide_empty' => $empty , 'number' => $num , 'order_by' => $sort , 'order' => $order); 
    //if($cat) $query_args['category_name'] = $cat; 
    //echo balanceTags($cat); exit('sssss'); 
    $terms = get_terms('product_cat', $term_args) ; 
    //printr($terms); 
    ob_start() ;?> 

<section id="featureCat2" class="row contentRowPad"> 
<div class="container"> 
    <h3 class="heading"><?php echo balanceTags($title); ?></h3> 
<?php if (! empty($terms) && ! is_wp_error($terms)):?> 
    <div class="row m0"> 

    <?php foreach ($terms as $term) : 
      $meta = _WSH()->get_term_meta('_sh_product_cat_settings', $term->term_id);//printr($meta); 
    ?> 

     <div class="col-sm-3"> 
      <div class="row category2 text-center"> 
       <div class="row m0 imgHov"> 
       <?php $thumbnail_id = get_woocommerce_term_meta($term->term_id, 'thumbnail_id', true); ?> 
        <?php echo wp_get_attachment_image($thumbnail_id, '292x198'); ?> 
        <div class="hovArea row m0"> 
         <a href="<?php echo esc_url(get_term_link($term)); ?>"><?php esc_html_e('shop now ', 'furniture');?><i class="fa fa-caret-right"></i></a> 
        </div> 
       </div> 
       <div class="row m0"> 
        <h5 class="heading"><?php echo balanceTags($term->name);?></h5> 
        <ul class="list-unstyled black-color"> 
        <?php $query = get_posts(array('showposts'=>4, 'post_type'=>'product', 'product_cat'=>$term->slug, 'order'=>'DESC')); //printr($query);?> 
         <?php if($query) 
         foreach($query as $qu): ?> 
          <li><a href="<?php echo get_permalink($qu->ID); ?>" title="<?php echo get_the_title($qu->ID); ?>"><?php echo get_the_title($qu->ID); ?></a></li> 
         <?php endforeach; ?> 
        </ul> 
       </div> 
      </div> 
     </div> 

     <?php endforeach;?> 

    </div> 

    <?php endif;?> 

</div> 
</section> 

<?php return ob_get_clean(); 

答えて

1

+1

あなたの新しい回答がすべてあなたの回答から編集されている場合は、どうすればよいかをご確認ください。詳しくは、https://meta.stackoverflow.com/questions/352638/is-it-無関係な答えの中に含まれている可能性があります。 – NathanOliver

+0

は完璧に協力してくれました。ちょうど不思議、これらの用語は、将来の参照のためのwoocommerceのドキュメントのどこかにありますか? Cheers – JPWeb

+0

@JPWebこれは、** WordPress **のカスタムタクソノミーと[WP_Queryクラスリファレンス](https://codex.wordpress.org/Class_Reference/WP_Query)に関連しています。 – LoicTheAztec

関連する問題