Support

Account

Home Forums Backend Issues (wp-admin) Escaped HTML in labels since ACF 6.4.3 Reply To: Escaped HTML in labels since ACF 6.4.3

  • This worked for me for the field label. Some other parts like flexible field titles ar not yet working and escaped. Try to find a solution for that too. But the labels can contain html code again.

    add_filter('acf/get_field_label', function($label, $field, $context) {
    	return html_entity_decode($label);
    }, 10, 3);