no_texturize_tags filter-hook . WP 2.8.0
Filters the list of HTML elements not to texturize.
Usage
add_filter( 'no_texturize_tags', 'filter_function_name_9288' ); function filter_function_name_9288( $default_no_texturize_tags ){ // filter... return $default_no_texturize_tags; }
- $default_no_texturize_tags(string[])
- An array of HTML element names.
Changelog
Since 2.8.0 | Introduced. |
Where the hook is called
wp-includes/formatting.php 218
$no_texturize_tags = apply_filters( 'no_texturize_tags', $default_no_texturize_tags );