Код: Выделить всё
$terms = get_the_terms($product_id, 'pa_establecimiento');
$telephone = get_field('establishment_phone', 'pa_establecimiento_' . $terms[0]->term_id);
Я пробовал
Код: Выделить всё
function get_acf_field_multilanguage($field_name, $post_id) {
// Get the current language code
$current_language = ICL_LANGUAGE_CODE;
// Get the translated post ID for the current language
$translated_post_id = apply_filters('wpml_object_id', $post_id, 'post', true, $current_language);
// Retrieve the ACF field value using the translated post ID
$field_value = get_field($field_name, $translated_post_id);
return $field_value;
}
$telephone = get_acf_field_multilanguage('establishment_phone', $product_id);
Подробнее здесь: https://stackoverflow.com/questions/790 ... -with-wpml