block_editor_settings_all
Filters the settings to pass to the block editor for all editor type.
Usage
add_filter( 'block_editor_settings_all', 'wp_kama_block_editor_settings_all_filter', 10, 2 );
/**
* Function for `block_editor_settings_all` filter-hook.
*
* @param array $editor_settings Default editor settings.
* @param WP_Block_Editor_Context $block_editor_context The current block editor context.
*
* @return array
*/
function wp_kama_block_editor_settings_all_filter( $editor_settings, $block_editor_context ){
// filter...
return $editor_settings;
}
- $editor_settings(array)
- Default editor settings.
- $block_editor_context(WP_Block_Editor_Context)
- The current block editor context.
Changelog
| Since 5.8.0 | Introduced. |
Where the hook is called
block_editor_settings_all
wp-includes/block-editor.php 645
$editor_settings = apply_filters( 'block_editor_settings_all', $editor_settings, $block_editor_context );
Where the hook is used in WordPress
wp-includes/block-supports/duotone.php 57
add_filter( 'block_editor_settings_all', array( 'WP_Duotone', 'add_editor_settings' ), 10 );