Definition:
function esc_html( $text ) {}
Escaping for HTML blocks.
Parameters
- string $text
Defined filters
- esc_html
apply_filters( 'esc_html', $safe_text, $text )
Source code
function esc_html( $text ) {
$safe_text = wp_check_invalid_utf8( $text );
$safe_text = _wp_specialchars( $safe_text, ENT_QUOTES );
return apply_filters( 'esc_html', $safe_text, $text );
}
1026

February 11, 2011 


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