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
174 B
Text
5 lines
174 B
Text
add_action( 'woocommerce_before_add_to_cart_button', 'wc_before_add_to_cart_btn' );
|
|
|
|
function wc_before_add_to_cart_btn(){
|
|
echo 'Spend at least $20 to get free shipping';
|
|
}
|