add_filter( 'wcml_js_lock_fields_ids', 'the_callback_function' );
- النوع
- filter
- الفئة
- تحديث المحتوى
- إصدار WooCommerce Multilingual
- 3.8
الوصف
أضف أو أزل معرفات الحقول المخصصة المقفلة في محرر منتجات WooCommerce الأصلي للمنتجات المترجمة.
الوسطاء
هناك مُعامل واحد فقط يتم تمريره إلى هذا المرشِّح:- $ids
- (مصفوفة) المصفوفة التي تتضمن معرفات الحقول المخصصة.
مثال على الاستخدام
مثال
/**
* Add this code to the functions.php file of your theme.
*/
add_filter( 'wcml_js_lock_fields_ids', 'add_js_lock_fields_ids' );
function add_js_lock_fields_ids( $ids ){
// Add 2 locked field IDs
$ids[] = '_per_product_pricing_bto';
$ids[] = '_per_product_shipping_bto';
return $ids;
}
خطاطيف ذات صلة
wcml_after_duplicate_product_post_meta, wcml_update_extra_fields, wcml_js_lock_fields_input_names, wcml_js_lock_fields_classes, wcml_before_sync_product, wcml_before_sync_product_data