How can i access current woocommerce order shipping method id?

I have found method

$order->get_shipping_method() 

to access the name, but i want to retrieve the id instead of name?

Related posts

Leave a Reply

2 comments

  1. 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.