WooCommerce钩子,用于从管理员创建订单 [英] WooCommerce hook for order creation from admin

查看:152
本文介绍了WooCommerce钩子,用于从管理员创建订单的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的自定义插件(在WooCommerce 2.6.x和3.x中工作)中,创建新订单时需要获取订单ID.我尝试了不同的挂钩,但是它们仅在客户创建订单时才起作用,而不是从管理员创建订单时才起作用.

In my custom plugin (working in WooCommerce 2.6.x and 3.x), I need to get the order ID when a new order is created. I tried different hooks but they work only when the customer creates an order and not when an order is created from admin.

我尝试过:

  • woocommerce_new_order
  • woocommerce_thankyou
  • woocommerce_checkout_order_processed
  • woocommerce_checkout_update_order_meta

更新

最后我用了这个:

add_action('wp_insert_post', function($order_id)
{
    if(!did_action('woocommerce_checkout_order_processed') 
        && get_post_type($order_id) == 'shop_order'
        && validate_order($order_id))
    {
         order_action($order_id);
    }
});

其中 validate_order 是:

function validate_order($order_id)
{
    $order = new \WC_Order($order_id);
    $user_meta = get_user_meta($order->get_user_id());
    if($user_meta)
        return true;
    return false;
}

感谢 validate_order ,当您开始创建订单时未执行该操作.我使用!did_action('woocommerce_checkout_order_processed')是因为我不希望由客户创建订单来执行该操作(我使用woocommerce_checkout_order_processed为此执行了特定操作).

Thanks to validate_order the action isn't executed when you start to create the order. I use !did_action('woocommerce_checkout_order_processed') because I don't want that the action is executed if the order is created by a customer (I have a specific action for that, using woocommerce_checkout_order_processed).

推荐答案

如果您使用管理页面.../wp-admin/post-new.php?post_type=shop_order来创建新订单,则在创建此订单时可能没有WooCommerce钩子来执行此操作由WordPress核心.

If you are using the admin page .../wp-admin/post-new.php?post_type=shop_order to create the new order then there may not be a WooCommerce hook to do this as this order is created by the WordPress core.

但是,WordPress操作'save_post_shop_order'将被称为$post_ID的订单ID来调用.

However, the WordPress action 'save_post_shop_order' will be called with the $post_ID which is the order id.

请参见...\wp-includes\post.php中的功能wp_insert_post().

这篇关于WooCommerce钩子,用于从管理员创建订单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆