woocommerce_shipping_method_description
Return the shipping method description.
Usage
add_filter( 'woocommerce_shipping_method_description', 'wp_kama_woocommerce_shipping_method_description_filter', 10, 2 );
/**
* Function for `woocommerce_shipping_method_description` filter-hook.
*
* @param $method_description
* @param $that
*
* @return
*/
function wp_kama_woocommerce_shipping_method_description_filter( $method_description, $that ){
// filter...
return $method_description;
}
- $method_description
- -
- $that
- -
Changelog
| Since 2.6.0 | Introduced. |
Where the hook is called
woocommerce_shipping_method_description
woocommerce/includes/abstracts/abstract-wc-shipping-method.php 237
return apply_filters( 'woocommerce_shipping_method_description', $this->method_description, $this );