Skip to content

Instantly share code, notes, and snippets.

@flistefliste
Last active September 10, 2018 08:01
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flistefliste/63bfa004aad4bd48453c to your computer and use it in GitHub Desktop.
Save flistefliste/63bfa004aad4bd48453c to your computer and use it in GitHub Desktop.
$order->get_items( 'shipping' ) is useful to get all data from shipping method
<?php
$shipping_items = $order->get_items( 'shipping' );
foreach($shipping_items as $el){
$shipping_method_id = $el['method_id'] ;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment