2017-08-03 95 views

回答

0

尝试使用woocommerce_before_save_order_items挂钩。

add_action('woocommerce_before_save_order_items', function() { 
    // Do somehting here with the data 
}, 10, 2); 
相关问题