mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
5 lines
206 B
Text
5 lines
206 B
Text
add_filter( 'woocommerce_cart_shipping_method_full_label', 'bbloomer_shipping_method_suffix' );
|
|
|
|
function bbloomer_shipping_method_suffix( $label ) {
|
|
return $label . ' (<a href="">shipping FAQ</a>)';
|
|
}
|