Disable Visual editor for all users

Is there a way to Disable the visual editor for all users without logging in and setting each user’s setting in the admin panel, preferable some way to do it with code in the functions file?

Related posts

Leave a Reply

2 comments

  1. Not sure if this still works. Preferably, drop this inside your theme’s functions.php:

    add_filter( 'user_can_richedit' , '__return_false', 50 );