wp_editor_expand filter-hookWP 4.0.0

Filters whether to enable the 'expand' functionality in the post editor.

Usage

add_filter( 'wp_editor_expand', 'wp_kama_editor_expand_filter', 10, 2 );

/**
 * Function for `wp_editor_expand` filter-hook.
 * 
 * @param bool   $expand    Whether to enable the 'expand' functionality.
 * @param string $post_type Post type.
 *
 * @return bool
 */
function wp_kama_editor_expand_filter( $expand, $post_type ){

	// filter...
	return $expand;
}
$expand(true|false)
Whether to enable the 'expand' functionality.
Default: true
$post_type(string)
Post type.

Changelog

Since 4.0.0 Introduced.
Since 4.1.0 Added the $post_type parameter.

Where the hook is called

In file: /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 ) ) {

Where the hook is used in WordPress

Usage not found.