批量更改订单信息作为特定Woocommerce订单ID的订单状态

问题描述 投票:1回答:1

我有一个订单ID(~400)的列表,这些订单ID目前不在我需要更改的正确订单状态,我还想更新他们的付款方式。

什么是最有效和最好的方法来解决这个问题?

到目前为止,我的思维过程是有一个Order Ids数组,通过它们然后在每个上面运行$order->update_status( 'custom-status' )。但是我不确定运行它的最佳方法是确保服务器不会超时并且可以批量执行。

php sql wordpress woocommerce orders
1个回答
0
投票

要更新订单ID数组的订单状态,您可以使用多种方式(但始终在之前进行数据库备份,或者至少在wp_posts表中进行备份)。

注意:Woocommerce订单post_status始终由wc-开始。

1)最好的方法是使用WPDB WordPress类轻量级,高效且独特的SQL查询,这样:

global $wpdb;

$new_status = 'wc-custom-status';
$product_ids = array(37, 53, 57, 63, 80); // The array of product Ids
$product_ids = implode(',', $product_ids);

$wpdb->query( "
    UPDATE {$wpdb->prefix}posts
    SET post_status = '$replacement_user_id'
    WHERE ID IN ($product_ids)
    AND post_type = 'shop_order'
" );

2)另一种方法(更重)是更新命令数组的状态是在foreach循环中使用WordPress wp_update_post()函数,这样:

$new_status = 'wc-custom-status';
$product_ids = array(37, 53, 57, 63, 80); // The array of product Ids
$product_ids = implode(',', $product_ids);

foreach ( $orders_ids as $order_id ) {
    wp_update_post( array('ID' => $order_id, 'post_status' => $new_status) );
}

两个代码都经过测试和运行。

您可以将代码嵌入到函数中并从钩子中触发它(甚至使用短代码)。

我不建议你使用WC_Product方法update_status(),因为它会非常沉重(它会向客户发送通知,具体订单状态)

© www.soinside.com 2019 - 2024. All rights reserved.