Skip to content

Instantly share code, notes, and snippets.

@szepeviktor
Created March 12, 2024 12:07
Show Gist options
  • Save szepeviktor/91a318719406288672e928579f46a62e to your computer and use it in GitHub Desktop.
Save szepeviktor/91a318719406288672e928579f46a62e to your computer and use it in GitHub Desktop.
WooCommerce order types
<?php
switch ( $item_type ) {
case 'line_item':
case 'product':
$classname = 'WC_Order_Item_Product';
break;
case 'coupon':
$classname = 'WC_Order_Item_Coupon';
break;
case 'fee':
$classname = 'WC_Order_Item_Fee';
break;
case 'shipping':
$classname = 'WC_Order_Item_Shipping';
break;
case 'tax':
$classname = 'WC_Order_Item_Tax';
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment