esc_html filter-hook . WP 2.8.0
Filters a string cleaned and escaped for output in HTML.
Text passed to esc_html() is stripped of invalid or special characters before output.
Usage
add_filter( 'esc_html', 'filter_function_name_1469', 10, 2 ); function filter_function_name_1469( $safe_text, $text ){ // filter... return $safe_text; }
- $safe_text(string)
- The text after it has been escaped.
- $text(string)
- The text prior to being escaped.
Changelog
Since 2.8.0 | Introduced. |
Where the hook is called
esc_html
wp-includes/formatting.php 4491
return apply_filters( 'esc_html', $safe_text, $text );