wp_editor_expand хук-фильтр . WP 4.0.0
Filters whether to enable the 'expand' functionality in the post editor.
Использование
add_filter( 'wp_editor_expand', 'filter_function_name_4749', 10, 2 ); function filter_function_name_4749( $expand, $post_type ){ // filter... return $expand; }
- $expand(true/false)
- Whether to enable the 'expand' functionality.
По умолчанию: true - $post_type(строка)
- Post type.
Список изменений
С версии 4.0.0 | Введена. |
С версии 4.1.0 | Added the $post_type parameter. |
Где вызывается хук
В файле: /wp-admin/edit-form-advanced.php
wp_editor_expand
wp-admin/edit-form-advanced.php 60
if ( apply_filters( 'wp_editor_expand', true, $post_type ) ) {