acf_render_field_wrap_label()
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() 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 );
}