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.

Usage

attribute_escape( $text );
$text(string) (required)
-

Notes

Changelog

Since 2.0.6 Introduced.
Deprecated since 2.8.0 Use esc_attr()

attribute_escape() code WP 6.5.2

function attribute_escape( $text ) {
	_deprecated_function( __FUNCTION__, '2.8.0', 'esc_attr()' );
	return esc_attr( $text );
}