// اضافه کردن تبهای سفارشی به صفحه محصول
add_filter( 'woocommerce_product_tabs', 'add_custom_product_tabs' );
function add_custom_product_tabs( $tabs ) {
// تب اول
$tabs['custom_tab_1'] = array(
'title' => 'نام زبانه اول', // اینجا اسم رو خودت بنویس
'priority' => 30,
'callback' => 'custom_tab_content_1'
);
// تب دوم
$tabs['custom_tab_2'] = array(
'title' => 'نام زبانه دوم',
'priority' => 31,
'callback' => 'custom_tab_content_2'
);
// تب سوم
$tabs['custom_tab_3'] = array(
'title' => 'نام زبانه سوم',
'priority' => 32,
'callback' => 'custom_tab_content_3'
);
return $tabs;
}
// محتوای تب اول
function custom_tab_content_1() {
echo '
| کد محصول | ۱۸۰۰۸۸ |
| وزن / حجم خالص | 10±2 |
| ماندگاری محصول | ۲۴ |
| کد ملی | ۱۶۵۱۰۰۰۲۷۳۷۰۰۲۵ |
| ایران کد | ۶۲۶۰۲۷۳۷۷۰۱۵۳۸ |
';
}
// محتوای تب دوم
function custom_tab_content_2() {
echo '
| انرژی | ۱/۰۸ |
| چربی | ۰/۰۴۵ |
| نمک | ۰/۱۰۷ |
| شکر | ۰/۰۶ |
| اسیدهای چرب ترانس | ۰ |
| ارزش غذایی در هر ... گرم | ۳ |
';
}
// محتوای تب سوم
function custom_tab_content_3() {
echo '
| تعداد محصول در بستهبندی | ۱۲ |
| تعداد بسته در پالت | ۲۴۰ |
| نوع بستهبندی | کارتن |
| ابعاد بستهبندی | ۲۹.۵*۲۰*۲۲ |
| جنس بستهبندی | پت |
';
}