2017-08-03 42 views

回答

0

嘗試使用woocommerce_before_save_order_items掛鉤。

add_action('woocommerce_before_save_order_items', function() { 
    // Do somehting here with the data 
}, 10, 2); 
相關問題