sale-flash-label.php
· 209 B · PHP
原始文件
/* START Show sale flash label */
add_filter('woocommerce_sale_flash', 'ds_change_sale_text');
function ds_change_sale_text() {
return '<span class="onsale">Oferta!</span>';
}
/* END Show sale flash label */
1 | /* START Show sale flash label */ |
2 | add_filter('woocommerce_sale_flash', 'ds_change_sale_text'); |
3 | function ds_change_sale_text() { |
4 | return '<span class="onsale">Oferta!</span>'; |
5 | } |
6 | |
7 | /* END Show sale flash label */ |
8 |