woocommerce_format_weight
Использование
add_filter( 'woocommerce_format_weight', 'wp_kama_woocommerce_format_weight_filter', 10, 2 ); /** * Function for `woocommerce_format_weight` filter-hook. * * @param $weight_string * @param $weight * * @return */ function wp_kama_woocommerce_format_weight_filter( $weight_string, $weight ){ // filter... return $weight_string; }
- $weight_string
- -
- $weight
- -
Где вызывается хук
woocommerce_format_weight
woocommerce/includes/wc-formatting-functions.php 1360
return apply_filters( 'woocommerce_format_weight', $weight_string, $weight );