Removing media button from word press editor

From WP 3.3, we can toggle the ‘Add Media’ button by using ‘media_buttons’ settings. $editor_settings = array(‘media_buttons’ => false); wp_editor($post_content, ‘content_id’, $editor_settings); More details can be found here.. http://codex.wordpress.org/Function_Reference/wp_editor Inserting images into multiple text boxes using wordpress default media manager javascript var uploadID = ”; /*setup the var*/ jQuery(‘.upload-button’).click(function() { uploadID = jQuery(this).prev(‘input’); /*grab the … Continue reading