$order->update_meta_data();
$order->save();
這邊的 update_meta_data,可能會有點誤解,實際上 update_meta_data 並沒有牽涉任何資料庫的操作,而是將 order 物件內的資料進行更新,最後還是要呼要 $order->save() 來將資料存到資料庫中
https://woocommerce.com/document/developing-using-woocommerce-crud-objects/
$order->update_meta_data();
$order->save();
這邊的 update_meta_data,可能會有點誤解,實際上 update_meta_data 並沒有牽涉任何資料庫的操作,而是將 order 物件內的資料進行更新,最後還是要呼要 $order->save() 來將資料存到資料庫中
https://woocommerce.com/document/developing-using-woocommerce-crud-objects/