mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
5 lines
180 B
Text
5 lines
180 B
Text
add_action( 'woocommerce_after_quantity_input_field', 'wc_echo_qty_front_add_cart' );
|
|
|
|
function wc_echo_qty_front_add_cart() {
|
|
echo '<span class="qty-suff">liters</span>';
|
|
}
|