Support

Account

Home Forums Backend Issues (wp-admin) WYSIWYG always defaults to text mode Reply To: WYSIWYG always defaults to text mode

  • Maybe this might help:

    add_filter( 'wp_default_editor', 'my_default_editor' );
    function my_default_editor() {
        return "html"; // TEXT mode
        // return "tinymce"; // VISUAL mode
    }

    https://developer.wordpress.org/reference/functions/wp_default_editor/