我正在WooCommerce中寻找一种方法来获取/获取购物车中的单个运输价格。
foreach (WC()->cart->get_cart() as $hash => $item) {
# get $item wise shipping price.
}
我检查了/woocommerce/includes/class-wc-cart.php
类,但只发现get_cart_shipping_total()
,它返回的总运费而不是每种产品的单独运费。
TL; DR
如果有人可以引导我,我将非常感激。
谢谢。