Tool seo
Đăng nhập để sử dụng tool

Function hiển thị giá Bán – Khuyến Mãi – Tiết kiệm

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');
3 bình luận
Để lại một bình luận

Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *

Function hiển thị giá Bán – Khuyến Mãi – Tiết kiệm
Chia sẻ bài viết