documentation_ignore_functions хук-фильтр . WP 2.8.0
Filters the list of functions and classes to be ignored from the documentation lookup.
Использование
add_filter( 'documentation_ignore_functions', 'filter_function_name_5176' ); function filter_function_name_5176( $ignore_functions ){ // filter... return $ignore_functions; }
- $ignore_functions(строка[])
- Array of names of functions and classes to be ignored.
Список изменений
С версии 2.8.0 | Введена. |
Где вызывается хук
documentation_ignore_functions
wp-admin/includes/misc.php 622
$ignore_functions = apply_filters( 'documentation_ignore_functions', $ignore_functions );