woocommerce_order_amount_item_tax хук-фильтр . WC 1.0
Использование
add_filter( 'woocommerce_order_amount_item_tax', 'filter_function_name_9239', 10, 4 ); function filter_function_name_9239( $tax, $item, $round, $that ){ // filter... return $tax; }
- $tax
- -
- $item
- -
- $round
- -
- $that
- -
Где вызывается хук
woocommerce_order_amount_item_tax
woocommerce/includes/abstracts/abstract-wc-order.php 1863
return apply_filters( 'woocommerce_order_amount_item_tax', $tax, $item, $round, $this );