add_filter( 'wcml_product_content_fields', 'the_callback_function', 10, 2 );
- النوع
- filter
- الفئة
- إدراج المحتوى
- إصدار WooCommerce Multilingual
- 3.6
الوصف
أضف أو أزل الحقول المخصصة في محرر الترجمة لـ WCML.
الوسطاء
يتم تمرير مَعلمتين إلى هذا المرشِّح:- $fields
- (مصفوفة) مصفوفة الحقل المخصص.
- $product_id
- (عدد صحيح) معرف منتج أصلي.
مثال على الاستخدام
مثال
/*
* Add this code to the functions.php file of your theme.
*/
add_filter( 'wcml_product_content_fields', 'add_custom_fields_wcml_editor', 10, 2 );
function add_custom_fields_wcml_editor ( $fields, $product_id ) {
// Add the 'new_button_label' field to WCML Translation Editor
$fields[] = 'new_button_label';
return $fields;
}