no_texturize_shortcodes хук-фильтр . WP 2.8.0
Filters the list of shortcodes not to texturize.
Использование
add_filter( 'no_texturize_shortcodes', 'filter_function_name_1854' ); function filter_function_name_1854( $default_no_texturize_shortcodes ){ // filter... return $default_no_texturize_shortcodes; }
- $default_no_texturize_shortcodes(строка[])
- An array of shortcode names.
Список изменений
С версии 2.8.0 | Введена. |
Где вызывается хук
wp-includes/formatting.php 226
$no_texturize_shortcodes = apply_filters( 'no_texturize_shortcodes', $default_no_texturize_shortcodes );