attribute_escape()
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
.
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() |
attribute_escape() attribute escape code WP 6.7.1
function attribute_escape( $text ) { _deprecated_function( __FUNCTION__, '2.8.0', 'esc_attr()' ); return esc_attr( $text ); }