Wordpress : Remove the Visual Editor


/ Published in: PHP
Save to your folder(s)

It’s possible to disable it conditionally for each WordPress user by going to Users > Your Profile. However, if you want to remove it completely, you can add the following filter:


Copy this code and paste it in your HTML
  1. add_filter('user_can_richedit' , create_function('' , 'return false;') , 50);

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.