WC_Meta_Box_Order_Items::save()
Save meta box data.
Метод класса: WC_Meta_Box_Order_Items{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$result = WC_Meta_Box_Order_Items::save( $post_id );
- $post_id(int) (обязательный)
- -
Код WC_Meta_Box_Order_Items::save() WC Meta Box Order Items::save WC 9.7.1
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 ); }