如何知道woocommerce中的订单何时打开(日期和时间)

时间:2018-09-06 12:45:48

标签: php wordpress woocommerce

PHP:

订单状态为wc_open,我正在尝试找出一种方法来知道订单何时打开(日期和时间)。

$order = wc_get_order( $nextorder->ID );

$order->get_date_modified();

我正在使用get_date_modified(),但此方法无法给出正确的答案,因为如果发生任何更改,修改日期也会更改。

请帮助我。

1 个答案:

答案 0 :(得分:0)

您需要这样做:

$order = wc_get_order($nextorder->ID);
$order_date = $order->order_date;