WooCommerce 订单状态不会因 save_post_ 操作而改变

WooCommerce order status doesn't change on save_post_ action

我正在开发一个 WooCommerce 插件,我将额外的元数据保存在 save_post_shop_order 操作挂钩上。 现在我想添加一个逻辑,根据某些条件将订单状态更改为 'pending'。 我发现无论哪种状态,save_post_shop_order 操作挂钩中的订单状态都不会改变。

function save_order_data(int $post_id)
{
$nonce_name = isset($_POST['save_invoice_nonce']) ? $_POST['save_invoice_nonce'] : '';
$nonce_action = 'save_invoice';

if (!wp_verify_nonce($nonce_name, $nonce_action)) {
    return;
}
if (!current_user_can('edit_shop_orders', $post_id)) {
    return;
}

if (wp_is_post_autosave($post_id)) {
    return;
}

if (wp_is_post_revision($post_id)) {
    return;
}

$order = wc_get_order($post_id);
$order->update_status('pending'); // This command works but it seems order status is being overwritten maybe by WooCommerce to previous status


}

add_action('save_post_shop_order', 'save_order_data', PHP_INT_MAX);

我最终不得不使用 Transients 来记住在下一页加载时进行状态更改,然后在 woocommerce_after_register_post_type 挂钩上更改订单状态。