WC_Abstract_Order::get_shipping_methods
Return an array of shipping costs within this order.
Метод класса: WC_Abstract_Order{}
Хуков нет.
Возвращает
WC_Order_Item_Shipping[].
Использование
$WC_Abstract_Order = new WC_Abstract_Order(); $WC_Abstract_Order->get_shipping_methods();
Код WC_Abstract_Order::get_shipping_methods() WC Abstract Order::get shipping methods WC 10.5.2
public function get_shipping_methods() {
return $this->get_items( 'shipping' );
}