woocommerce_order_update_tax action-hookWC 1.0

Usage

add_action( 'woocommerce_order_update_tax', 'wp_kama_woocommerce_order_update_tax_action', 10, 3 );

/**
 * Function for `woocommerce_order_update_tax` action-hook.
 * 
 * @param  $id      
 * @param  $item_id 
 * @param  $args    
 *
 * @return void
 */
function wp_kama_woocommerce_order_update_tax_action( $id, $item_id, $args ){

	// action...
}
$id
-
$item_id
-
$args
-

Where the hook is called

WC_Abstract_Legacy_Order::update_tax()
woocommerce_order_update_tax
woocommerce/includes/legacy/abstract-wc-legacy-order.php 308
do_action( 'woocommerce_order_update_tax', $this->get_id(), $item->get_id(), $args );

Where the hook is used in WooCommerce

Usage not found.