Code add new field vào thẻ general woocommerce
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
function show_khuyen_mai(){
global $post;
$get_khuyen_mai = get_post_meta($post->ID,"_khuyen_mai",true);
$_thi_truong_phuc_vu = get_post_meta($post->ID,"_thi_truong_phuc_vu",true);
?>
<div class="khuyen-mai">
<h2>Khuyến mãi</h2>
<p><?php echo $get_khuyen_mai; ?></p>
</div>
<div class="thi-truong-phuc-vu">
<?php echo $_thi_truong_phuc_vu; ?>
</div>
<?php
}
add_action("woocommerce_single_product_summary","show_khuyen_mai",21);
|
0 nhận xét: