woocommerce/templates/single-product/sale-flash.php

22 lines
428 B
PHP
Raw Normal View History

<?php
/**
* Single Product Sale Flash
2012-08-14 18:05:45 +00:00
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 1.6.4
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
global $post, $product;
?>
2014-01-15 05:53:37 +00:00
<?php if ( $product->is_on_sale() ) : ?>
2012-08-14 18:05:45 +00:00
2014-01-15 05:53:37 +00:00
<?php echo apply_filters( 'woocommerce_sale_flash', '<span class="onsale">' . __( 'Sale!', 'woocommerce' ) . '</span>', $post, $product ); ?>
2012-08-14 18:05:45 +00:00
<?php endif; ?>