Radio Buttons
Radio Buttons allow users to choose a single item from a list of options.
note
The following examples use a field named radio_field
. This should be replaced with your field name.
- Twig
- Blade
{{ entry.radio_field }}
{% for value, label in entry.radio_field.options %}
{{ label }} - {{ value }}
{% endfor %}
{% for value, label in entry.radio_field.selected %}
{{ label }} - {{ value }}
{% endfor %}
{{ $entry->radio_field }}
@foreach($entry->radio_field->options as $value => $label)
{{ $label }} - {{ $value }}
@endforeach
@foreach($entry->radio_field->selected as $value => $label)
{{ $label }} - {{ $value }}
@endforeach
info
See the ExpressionEngine Documentation for more information on the Radio Buttons fieldtype