classic_editor_plugin_settings
classic_editor_plugin_settings
Appears in: classic-editor.1.2, classic-editor.1.3, classic-editor.1.4, classic-editor.1.5, classic-editor.1.6, classic-editor.1.6.1, classic-editor.1.6.2, classic-editor.1.6.3, classic-editor.1.6.4, classic-editor.1.6.5
Hook Type: filter
Displaying hooks found in version: classic-editor.1.6.5apply_filters('classic_editor_plugin_settings') is found 1 times:
- /classic-editor.php line 217
* 'allow-users' => false, * * @param boolean To override the settings return an array with the above keys. Default false. */ $settings = apply_filters( 'classic_editor_plugin_settings', false ); if ( is_array( $settings ) ) { return array( 'editor' => ( isset( $settings['editor'] ) && $settings['editor'] === 'block' ) ? 'block' : 'classic', 'allow-users' => ! empty( $settings['allow-users'] ), 'hide-settings-ui' => true,