I don’t suppose there is a relatively easy way to get a field value’s label if you’ve only set the field to return in value format and it’s too late to change it?
Yes it is, but depends on the type of field.
What type of field is it?
Hi John,
It’s a radio field. I set the return format to be value…and have now decided I need to get the label! 🙄
$value = get_field('radio-field-name');
if ($value) {
$field_object = get_field_object('radio-field-name');
echo $field_object['choices'][$value];
)