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