Paulund
2012-04-17 #wordpress

Set Wordpress Default Text Editor

When using the Wordpress text editor you can choose if you want to write your posts in either the visual text editor or the HTML text editor. By default this will be set to visual, but I prefer to use the HTML editor as then I know exactly what is going into the post. Adding the following Wordpress snippet means you can make sure the Wordpress will always use the html as the default text editor. Add this to the functions.php page and remove the line depending on which you want as the default editor.


<?php
# This sets the Visual Editor as default #
add_filter( 'wp_default_editor', create_function('', 'return "tinymce";') );

# This sets the HTML Editor as default #
add_filter( 'wp_default_editor', create_function('', 'return "html";') );  
?>