Remove quicktag buttons but not Visual / Text editor and tabs

I wish to remove the quick-tag buttons in the text (html) editor in TinyMCE but not the html editor itself nor the tabs for choosing between the editors. When I use $settings = array(‘quicktags’ => false); wp_editor($input, ‘editor_name’, $settings); WordPress removes the entire text editor and the Visual / Text tabs for choosing between the … Read more

How can I control multiple editing of wordpress posts?

I am managing multiple authors blog, I have issues of editors taking over the stories that someone else is currently editing. The default wordpress warning will display but some of them ignore it and still proceed to takeover the story. I need a way of locking such stories to prevent editing unless unlocked by the … Read more

WP_Editor – Remove TinyMCE Toolbars

I’ve created a TinyMCE Editor in a Metabox and I’m trying to remove the toolbars. According to The Codex I should be able to pass it an array of options to override the default TinyMCE. Here’s what I have: wp_editor( $content, ‘my_editor_id’, array( ‘textarea_name’ => ‘_meta_editor’, ‘tinymce’ => array( ‘toolbar1’ => ”, ‘toolbar2’ => ” … Read more