woocommerce_cart_taxes_total хук-фильтр . WC 1.0
Использование
add_filter( 'woocommerce_cart_taxes_total', 'filter_function_name_4576', 10, 4 ); function filter_function_name_4576( $total, $compound, $display, $that ){ // filter... return $total; }
- $total
- -
- $compound
- -
- $display
- -
- $that
- -
Где вызывается хук
woocommerce_cart_taxes_total
woocommerce/includes/class-wc-cart.php 2062
return apply_filters( 'woocommerce_cart_taxes_total', $total, $compound, $display, $this );