如何在 Woocommerce 中获取订单状态更改日期?

How to get the Order status changed date in Woocoomerce?

我需要获取订单状态更改的日期。

例如123为订单id,订单创建时间为12-12-2015,订单确认时间为13-12-2015。所以我需要知道订单号是在哪个日期确认的?

在 woocommerce 中,

尝试

$order = new WC_Order($order_id);
echo $order->modified_date;

切勿直接访问订单属性。使用它来获取订单修改日期:

$order = new WC_Order($order_id);
$modified_date = get_the_modified_date( $order );

echo $modified_date;