WordPress – How to retrieve the value of the field in ACF?
<?php if( $fields ) { foreach( $fields as $field) { $value = get_field( $field['name'] ); if ($value) { echo '<dl>'; echo '<dt>' . $field['label'] . '</dt>'; echo '<dd>' . $field['value'] . '</dd>'; echo '</dl>'; } } } ?> This is…