woocommerce/templates/loop/sale_flash.php

12 lines
260 B
PHP
Raw Normal View History

<?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!', 'woothemes').'</span>', $post, $product); ?>
<?php endif; ?>