acf_render_field_wrap_label()ACF 5.6.3

Deprecated since 5.6.5. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.

acf_render_field_wrap_label

Renders the field's label.

No Hooks.

Returns

null. Nothing (null).

Usage

acf_render_field_wrap_label( $field );
$field(array) (required)
The field array.

Changelog

Since 5.6.3 Introduced.
Deprecated since 5.6.5

acf_render_field_wrap_label() code ACF 6.0.4

function acf_render_field_wrap_label( $field ) {

	// Warning.
	_deprecated_function( __FUNCTION__, '5.7.11', 'acf_render_field_label()' );

	// Render.
	acf_render_field_label( $field );
}