File "sale-flash.php"

Full path: /home/kosmetik/public_html/wp-content/plugins/woocommerce/templates/loop/sale-flash.php
File size: 274 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php

if (!defined('ABSPATH')) {
    exit;
}
global $post, $product;
if ($product->is_on_sale()) {
    ?>

	<?php 
    echo apply_filters('woocommerce_sale_flash', '<span class="onsale">' . esc_html__('Sale!', 'woocommerce') . '</span>', $post, $product);
    ?>

	<?php 
}