How can i access current woocommerce order shipping method id? How can i access current woocommerce order shipping method id? wordpress wordpress

How can i access current woocommerce order shipping method id?


thought i'd share how I solved this if someone runs into the same problem as me. I have WC_Order in the $order variable.

$order->get_items( 'shipping' );

This gives me an array with name, type, method_id, cost and taxes.


$shipping_method = @array_shift($order->get_shipping_methods());$shipping_method_id = $shipping_method['method_id'];