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.
相关问题
- Reference for inserted element through execCommand
- Display product ACF field value in Woocommerce tra
- Adding a custom button after add to cart button in
- How to add a “active” class to a carousel first el
- Setting custom order statuses as valid for payment
相关文章
- wordpress新增页面如何个性化设置
- select query in wordpress
- Get WooCommerce featured products in a WP_Query
- Woocommerce update shipping methods in checkout vi
-
TinyMCE: How do I prevent `
- Change order status just after payment in WooComme
- Publishing or uploading failed. Error message: “Th
- Facebook Login With WP JWT Auth
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.
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.