Definition:
function attribute_escape( $text ) {}
Escaping for HTML attributes.
Parameters
- string $text
Source code
function attribute_escape( $text ) {
_deprecated_function( __FUNCTION__, '2.8', 'esc_attr()' );
return esc_attr( $text );
}
543

February 11, 2011 


No comments yet... Be the first to leave a reply!