woocommerce_order_object_updated_props action-hookWC 1.0

Usage

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
-

Where the hook is called

Abstract_WC_Order_Data_Store_CPT::update_post_meta()
woocommerce_order_object_updated_props
WC_Order_Data_Store_CPT::update_post_meta()
woocommerce_order_object_updated_props
woocommerce/includes/data-stores/abstract-wc-order-data-store-cpt.php 469
do_action( 'woocommerce_order_object_updated_props', $order, $updated_props );
woocommerce/includes/data-stores/class-wc-order-data-store-cpt.php 344
do_action( 'woocommerce_order_object_updated_props', $order, $updated_props );

Where the hook is used in WooCommerce

Usage not found.