Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

how to remove text tab in wordpress editor

function my_editor_settings($settings) {
        $settings['quicktags'] = false;
        return $settings;
}
add_filter('wp_editor_settings', 'my_editor_settings');
Source by wordpress.stackexchange.com #
 
PREVIOUS NEXT
Tagged: #remove #text #tab #wordpress #editor
ADD COMMENT
Topic
Name
2+8 =