06/16/2016 at 9:06 am
#379712
Keymaster
@ Brittany
Sounds like it working perfectly, you should receive the key name of the radio option that was chosen. You template code should be something like this:
$deathClassificationOptions = array(
'line_of_duty_death' => 'Line of Duty Death',
'performance_of_duty_death' => 'Performance of Duty Death',
'military_service_death' => 'Military Service Death',
);
$deathClassification = $entry->getMeta(
array(
'key' => 'death_classification_radio_group',
'single' => TRUE
)
);
if ( in_array( $deathClassification, $deathClassificationOptions ) ) {
echo esc_html( $deathClassificationOptions[ $deathClassification ] );
}
Hope that helps!
