在购物车页面woocommerce中获取product_cat的产品

时间:2015-11-02 23:33:37

标签: php woocommerce

正如标题所说,获取购物车页面中包含的产品的产品类别的最佳方法是什么?

1 个答案:

答案 0 :(得分:2)

  1. 使用WC()->cart->get_cart()
  2. 获取购物车内容
  3. 使用循环$content['product_id']
  4. 获取产品ID
  5. 使用get_the_terms($product_id, 'product_cat')
  6. 获取产品条款
  7. 使用循环$term->name
  8. 获取术语的名称