WPML
add_filter( 'wcml_product_content_label', 'the_callback_function', 10, 2 );
إصدار WooCommerce Multilingual
3.6

الوصف

عدّل أسماء الحقول المخصصة في محرر الترجمة لـ WCML.

الوسطاء

يتم تمرير مُعاملين إلى هذا المرشِّح:
$meta_key
(سلسلة نصية) مفتاح الحقل المخصص.
$product_id
(عدد صحيح) معرف المنتج الأصلي.

مثال على الاستخدام

مثال
/*
 * Add this code to the functions.php file of your theme.
 */

add_filter( 'wcml_product_content_label', 'change_field_label', 10, 2 );

function change_field_label( $meta_key, $product_id ) {

	// Change the label of 'new_button_label' field in WCML Translation Editor 

	if ( $meta_key == 'new_button_label' ) {
		return __( 'Translate New Button Label', 'textdomain' );
	}

	return $meta_key;
}

wcml_after_duplicate_product, wcml_product_content_fields

جميع خطاطيف إدراج المحتوى البالغ عددها 3 →