How can I completely remove TinyMCE in Wordpress?

﹥>﹥吖頭↗ 提交于 2019-12-12 18:57:52

问题


When I say "remove," I mean "permanently remove, forever, for everybody." All I want is a plain vanilla text box to paste HTML into, which I am editing locally.


回答1:


You may set the tinymce configuration parameter mode to none.

This means a special command is needed in order to initaialize the editor, thus your textarea will stay as it is.




回答2:


Nothing can be really be permanent as it's part of the core and updates will likely re-enable it at some point.

You can try adding add_filter ( 'user_can_richedit' , create_function ( '$a' , 'return false;' ) , 50 ); to your functions.php file.



来源:https://stackoverflow.com/questions/12648402/how-can-i-completely-remove-tinymce-in-wordpress

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!