get_id(); $cat_ids = $product->get_category_ids(); // if product has categories, concatenate cart item name with them if ($cat_ids) { $name = wc_get_product_category_list($id, ', ', '
', '
'); } echo wp_kses_post($name); } } add_action('woocommerce_after_shop_loop_item_title', 'envo_extra_product_categories', 1); }