woocommerce/templates/loop/sale_flash.php

12 lines
262 B
PHP

<?php
/**
* Product Loop Sale Flash
*/
global $post, $product;
?>
<?php if ($product->is_on_sale()) : ?>
<?php echo apply_filters('woocommerce_sale_flash', '<span class="onsale">'.__('Sale!', 'woocommerce').'</span>', $post, $product); ?>
<?php endif; ?>