woocommerce_get_price_excluding_tax
Использование
add_filter( 'woocommerce_get_price_excluding_tax', 'wp_kama_woocommerce_get_price_excluding_tax_filter', 10, 3 ); /** * Function for `woocommerce_get_price_excluding_tax` filter-hook. * * @param $return_price * @param $qty * @param $product * * @return */ function wp_kama_woocommerce_get_price_excluding_tax_filter( $return_price, $qty, $product ){ // filter... return $return_price; }
- $return_price
- -
- $qty
- -
- $product
- -
Где вызывается хук
woocommerce_get_price_excluding_tax
woocommerce/includes/wc-product-functions.php 1221
return apply_filters( 'woocommerce_get_price_excluding_tax', $return_price, $qty, $product );