acf_render_field_wrap_description()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_description

Renders the field's instructions.

No Hooks.

Returns

null. Nothing (null).

Usage

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

Changelog

Since 5.6.3 Introduced.
Deprecated since 5.6.5

acf_render_field_wrap_description() code ACF 6.8.8

function acf_render_field_wrap_description( $field ) {

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

	// Render.
	acf_render_field_instructions( $field );
}