Skip to content

Instantly share code, notes, and snippets.

@aayushdrolia
Forked from maxrice/gist:7918315
Created February 2, 2018 06:48
Show Gist options
  • Save aayushdrolia/6b3e2fe078272146c05c57c687413a0a to your computer and use it in GitHub Desktop.
Save aayushdrolia/6b3e2fe078272146c05c57c687413a0a to your computer and use it in GitHub Desktop.
Get SKU from products in an order
<?php
$order = new WC_Order( $order_id );
foreach ( $order->get_items() as $item_key => $item ) {
$product = $order->get_product_from_item( $item );
$sku = $product->get_sku();
// print_r( $item );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment