在WooCommerce完整按钮上添加自定义功能

时间:2015-06-04 10:06:10

标签: php ajax wordpress wordpress-plugin woocommerce

我在订单状态已完成按钮上向数据库表添加一些数据的情况。 enter image description here

我可以在class-wc-admin-post-types.php

中看到url

enter image description here

有人可以帮我解决任何问题吗?或者admin-ajax.php如何工作?我必须为我的一些自定义数据库表添加状态。

1 个答案:

答案 0 :(得分:1)

此代码将触发客户的订单设置为已完成..

add_action( 'woocommerce_order_status_completed', 'custom_task' );
function custom_task( $order_id ) {

    // Only continue if have $order_id
    if ( ! $order_id ) {
        return;
    }

    // Get order
    $order = wc_get_order( $order_id );

    // Do your thing

}