-
Notifications
You must be signed in to change notification settings - Fork 103
Open
Description
I would like to enter text mode instead of visual-editor.
I tried the following method, but I could not enable text mode.
add_filter('tailor_editor_settings', function($editor_settings) {
$editor_settings['teeny'] = true;
$editor_settings['tinymce'] = false;
return $editor_settings;
});
add_filter('wp_default_editor', function() {
return 'html';
});
The wordpress version is 4.9.6,
And the theme used is Twenty Seventeen.
How do I enable text mode?
Thanks.
Metadata
Metadata
Assignees
Labels
No labels