douhuanchi6586 2018-05-30 15:33
浏览 150
已采纳

显示子类别WooCommerce产品的标题

I changed the display of woocommerce products to display as a table in the shop loop rather than columned elements. When i go to the 'shop' page it displays all products in a list though. I am having trouble display the products in an organized fashion separating the products into their corresponding sub categories. Thanks in advance!

  • 写回答

2条回答 默认 最新

  • 普通网友 2018-05-30 15:54
    关注
    /**
    * @snippet       WooCommerce Show Product Subcategories
    * @compatible    WooCommerce 3.4
    */
    
    add_action( 
    'woocommerce_after_shop_loop_item_title','bbloomer_show_all_subcats', 2 );
    
    function bbloomer_show_all_subcats() {
    
    // Create array with product categories that belong to current product
    
    $cats = get_the_terms( $post->ID, 'product_cat' );
    
    if ( ! empty( $cats ) ) {
    
    // Loop through the product categories...
    
        foreach ( $cats as $term ) {
    
                        // If parent cat ID = 116 echo subcat name...
            if( $term->parent == 116 ) { echo $term->name; }
    
        }
    
        }
    
      }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?