wp_code_editor_settings хук-фильтр . WP 4.9.0
Filters settings that are passed into the code editor.
Returning a falsey value will disable the syntax-highlighting code editor.
Использование
add_filter( 'wp_code_editor_settings', 'filter_function_name_7356', 10, 2 ); function filter_function_name_7356( $settings, $args ){ // filter... return $settings; }
- $settings(массив)
- The array of settings passed to the code editor. A falsey value disables the editor.
- $args(массив)
Args passed when calling get_code_editor_settings().
-
type(строка)
The MIME type of the file to be edited. -
file(строка)
Filename being edited. -
theme(WP_Theme)
Theme being edited when on theme editor. -
plugin(строка)
Plugin being edited when on plugin editor. -
codemirror(массив)
Additional CodeMirror setting overrides. -
csslint(массив)
CSSLint rule overrides. -
jshint(массив)
JSHint rule overrides. - htmlhint(массив)
JSHint rule overrides.
-
Список изменений
С версии 4.9.0 | Введена. |
Где вызывается хук
wp_code_editor_settings
wp-includes/general-template.php 4006
return apply_filters( 'wp_code_editor_settings', $settings, $args );