1

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

wc_cart_totals_shipping_method_label( $method );

但这会返回运输标题以及运费

Flat Rate: $100.00 

我只想要“统一费率”。我一直在研究 get_method_title 和 get_title 但不确定他们是否做了我需要做的事情。

4

1 回答 1

1

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

wc_cart_totals_shipping_method_label( $method );

简单地说:

$label = $method->get_label();
echo $label;
于 2018-09-05T19:31:09.507 回答