我在订单状态已完成按钮上向数据库表添加一些数据的情况。
我可以在class-wc-admin-post-types.php
中看到url
有人可以帮我解决任何问题吗?或者admin-ajax.php如何工作?我必须为我的一些自定义数据库表添加状态。
答案 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
}