| Server IP : 93.115.150.27 / Your IP : 216.73.216.221 Web Server : LiteSpeed System : Linux host2.azar.host 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64 User : dorfakkh ( 1797) PHP Version : 8.1.34 Disable Function : show_source, system, passthru, exec, popen, proc_open, mail MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/dorfakkh/www/wp-content/themes/dorfakkhabar/ |
Upload File : |
<?php
add_filter( 'rwmb_meta_boxes', 'YOUR_PREFIX_register_meta_boxes' );
function YOUR_PREFIX_register_meta_boxes( $meta_boxes )
{
$prefix = 'iestore_';
$meta_boxes[] = array(
'id' => 'product_info',
'title' => 'مشخصه های محصول',
'pages' => array( 'post' ),
'context' => 'normal',
'priority' => 'high',
'fields' => array(
array(
// Field name - Will be used as label
'name' => 'وضعیت باکس جزئیات محصول',
'id' => $prefix . 'proboxstatus',
'desc' => 'باکس جزئیات محصول فعال باشد یا نه ؟',
'clone' => false,
'std' => 'active',
'type' => 'radio',
'options' => array (
'active' => 'فعال',
'deactive' => 'غیرفعال'
)
),
array(
// Field name - Will be used as label
'name' => 'قیمت محصول',
'id' => $prefix . 'price',
'desc' => 'اضافه کردن قیمت به تومان (مثال : 25 هزار تومان)',
'clone' => false,
'type' => 'text',
),
array(
// Field name - Will be used as label
'name' => 'حجم فایل',
'id' => $prefix . 'size',
'desc' => 'حجم کلی فایل شما ؟',
'clone' => false,
'type' => 'text',
),
array(
// Field name - Will be used as label
'name' => 'ورژن',
'id' => $prefix . 'version',
'desc' => 'مثلا : 1.3',
'clone' => false,
'type' => 'text',
),
array(
// Field name - Will be used as label
'name' => 'فرمت فایل',
'id' => $prefix . 'format',
'desc' => 'مثلا : psd',
'clone' => false,
'type' => 'text',
),
array(
// Field name - Will be used as label
'name' => 'پسورد فایل',
'id' => $prefix . 'password',
'desc' => 'در صورت خالی بودن این فیلد آدرس سایت شما نشان داده می شود',
'clone' => false,
'type' => 'text',
),
)
);
return $meta_boxes;
}