在 Woocommerce 购物车页面中获取运输方式标题

Get Shipping Method Title in Woocommerce cart page

我想在购物车页面上检索送货方式的标题。目前我正在使用

wc_cart_totals_shipping_method_label( $method );

但是 returns 运输名称和运费

Flat Rate: 0.00 

我只想要"Flat Rate"。我一直在调查 get_method_title 和 get_title 但不确定他们是否做了我需要做的事情。

要从 WC_Shipping_Rate 对象 $method 中获取标签,您必须替换:

wc_cart_totals_shipping_method_label( $method );

只需:

$label = $method->get_label();
echo $label;