woocommerce_order_amount_item_tax, $tax, $item, $round, $this
woocommerce_order_amount_item_tax, $tax, $item, $round, $this
Appears in: woocommerce.11.0.0
Hook Type: filter
Displaying hooks found in version: woocommerce.11.0.0apply_filters('woocommerce_order_amount_item_tax, $tax, $item, $round, $this') is found 1 times:
- /includes/abstracts/abstract-wc-order.php line 2321
$tax = $item->get_total_tax() / $item->get_quantity(); $tax = $round ? wc_round_tax_total( $tax ) : $tax; } return apply_filters( 'woocommerce_order_amount_item_tax', $tax, $item, $round, $this ); } /** * Get line tax - useful for gateways. * * @param mixed $item Item to get total from.