Function và sử dụng dụng shortcode [hien_thi_gia]
// Hiển thị giá sản phẩm bán giá khuyến mãi tiết kiệm //
function hien_thi_gia_san_pham() {
global $product;
$regular_price = $product->get_regular_price();
$sale_price = $product->get_sale_price();
if (empty($sale_price)) {
return '<div class="_gia">Giá bán: <p class="_giaban">' . number_format($regular_price, 0, '.', '.') . ' đ</p></div>';
} else {
$savings = $regular_price - $sale_price;
$savings_percent = ceil(($savings / $regular_price) * 100);
return '<div class="_gia">Giá bán: <p class="_giaban">' . number_format($sale_price, 0, '.', '.') . ' đ </p></div>
<div class="_gia"> Giá cũ: <p class="_giacu">' . number_format($regular_price, 0, '.', '.') . ' đ </p></div>
<div class="_gia"> Tiết kiệm: ' . number_format($savings, 0, '.', '.') . ' đ (-' . $savings_percent . '%) <div class="tragop">Trả góp 0%</div></div>
<div class="_vat">Giá chưa gồm VAT</div>';
}
}
add_shortcode('hien_thi_gia', 'hien_thi_gia_san_pham');
Hay quá cảm ơn bác
Cảm ơn bác
tìm mãi mới thấy bài này của bác