Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

i need to remove the deafault TinyMCE editor from pages, i used this:

remove_post_type_support( 'page', 'editor' );

But it removes also the media button that i need

share|improve this question

1 Answer

up vote 1 down vote accepted

You may want to have a look at the brand new wp_editor function in WP3.3, there's an option tiny_mce=true/false:

http://codex.wordpress.org/Function_Reference/wp_editor

share|improve this answer
thanks, i'm looking in right now :) – TrustWeb Dec 13 '11 at 16:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.