attribute_escape() WP 2.0.6
Deprecated from version 2.8.0. It is no longer supported and can be removed in future releases. Use esc_attr() instead.╳
Escaping for HTML attributes.
No Hooks.
Return
String
. Null. Nothing.
Usage
attribute_escape( $text );
- $text(string) (required)
- -
Notes
- See: esc_attr()
Changelog
Since 2.0.6 | Introduced. | |
Deprecated Since 2.8.0 | Use esc_attr() |
Code of attribute_escape() attribute escape WP 5.7
function attribute_escape( $text ) {
_deprecated_function( __FUNCTION__, '2.8.0', 'esc_attr()' );
return esc_attr( $text );
}