woocommerce_cart_taxes_total filter-hook . WC 1.0
Usage
add_filter( 'woocommerce_cart_taxes_total', 'filter_function_name_1074', 10, 4 ); function filter_function_name_1074( $total, $compound, $display, $that ){ // filter... return $total; }
- $total
- -
- $compound
- -
- $display
- -
- $that
- -
Where the hook is called
woocommerce_cart_taxes_total
woocommerce/includes/class-wc-cart.php 2076
return apply_filters( 'woocommerce_cart_taxes_total', $total, $compound, $display, $this );