WC_Order_Item_Coupon_Data_Store::save_item_data()
Saves an item's data to the database / item meta. Ran after both create and update, so $item->get_id() will be set.
Method of the class: WC_Order_Item_Coupon_Data_Store{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WC_Order_Item_Coupon_Data_Store = new WC_Order_Item_Coupon_Data_Store(); $WC_Order_Item_Coupon_Data_Store->save_item_data( $item );
- $item(WC_Order_Item_Coupon) (required) (passed by reference — &)
- Coupon order item.
Changelog
Since 3.0.0 | Introduced. |
WC_Order_Item_Coupon_Data_Store::save_item_data() WC Order Item Coupon Data Store::save item data code WC 9.4.2
public function save_item_data( &$item ) { $id = $item->get_id(); $save_values = array( 'discount_amount' => $item->get_discount( 'edit' ), 'discount_amount_tax' => $item->get_discount_tax( 'edit' ), ); foreach ( $save_values as $key => $value ) { update_metadata( 'order_item', $id, $key, $value ); } }