Advanced Custom Fields select field : How to echo the label, not the value? [closed]

I am using the wordpress Advanced Custom Fields plugin.

This question is about the select field, and in the documentation only tells me how to output the value, not the label/name.

I can’t see this functionally in the documentation and was wondering if anyone had any ideas?

For example, to create Select field content, you simple do this…

gb : English
fr : Français
it : Italiano
de : Deutsch
pt : Português
es : Español
nl : Nederlands
be : Belgian
dk : Dansk
fi : Suomi
no : Norske
cz : Český
pl : Polski
hu : Magyar
ch : Schweiz
at : Österreich
eu : International

Then to output this, you write this…

<?php the_field('language'); ?>

For example if I select Polski in my post editor, the PHP will echo this value…

pl

I’m wondering if its possible to echo the label, I also want to be able to echo Polski, as well as the value pl.

If anyone knows of any documentation on how to do this or if you could help with a solution that would be most awesome.

Thanks in advance.

3 s
3

The get_field_object() function requires the field KEY not the field NAME. See docs: http://www.advancedcustomfields.com/resources/functions/get_field_object/

So it should looks something like this…

$field = get_field_object('field_53d27f5599979');
$value = get_field('field_myfield');
$label = $field['choices'][ $value ];

You can find the field key by clicking on “Screen Options” > “Show Field Key” and it should appear next to the field type. See attached animated gif-cast below.

Show Field Key

Leave a Comment