WC_Meta_Box_Order_Items::save( int $post_id )

Save meta box data.


Description Description


Parameters Parameters

$post_id

(Required)


Top ↑

Source Source

File: includes/admin/meta-boxes/class-wc-meta-box-order-items.php

	public static function save( $post_id ) {
		/**
		 * This $_POST variable's data has been validated and escaped
		 * inside `wc_save_order_items()` function.
		 */
		wc_save_order_items( $post_id, $_POST );
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.