Support

Account

Home Forums ACF PRO How to get field metadata (field definition)? Reply To: How to get field metadata (field definition)?

  • Get to work with this:

    $field = get_field_object($field_key);
    echo $field[‘choices’][‘fr’];

    A question: are the field key ‘stable’. i.e., they are created/associated when a field is created and then the never changes?

    There is way to get the field key from the field name? I would like not to write specifically field keys in the source code….