woocommerce_order_object_updated_props
Использование
add_action( 'woocommerce_order_object_updated_props', 'wp_kama_woocommerce_order_object_updated_props_action', 10, 2 ); /** * Function for `woocommerce_order_object_updated_props` action-hook. * * @param $order * @param $updated_props * * @return void */ function wp_kama_woocommerce_order_object_updated_props_action( $order, $updated_props ){ // action... }
- $order
- -
- $updated_props
- -
Где вызывается хук
woocommerce_order_object_updated_props
woocommerce_order_object_updated_props
woocommerce/includes/data-stores/class-wc-order-data-store-cpt.php 344
do_action( 'woocommerce_order_object_updated_props', $order, $updated_props );
woocommerce/includes/data-stores/abstract-wc-order-data-store-cpt.php 365
do_action( 'woocommerce_order_object_updated_props', $order, $updated_props );