WC_Abstract_Order::get_shipping_methods()publicWC 1.0

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 8.7.0

public function get_shipping_methods() {
	return $this->get_items( 'shipping' );
}