Title: Editor height
Last modified: February 8, 2019

---

# Editor height

 *  Resolved [Robert](https://wordpress.org/support/users/elvaron/)
 * (@elvaron)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/editor-height-2/)
 * Hi!
 * Editor height is set to 350px by default (in class-admin.php). How can I change
   it? Is there any filter hook to change this value?
 * Robert

Viewing 1 replies (of 1 total)

 *  Plugin Author [Marco Chiesi](https://wordpress.org/support/users/marcochiesi/)
 * (@marcochiesi)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/editor-height-2/#post-11183215)
 * You may use the wp_editor_settings filter with a higher priority.
 * The plugin calls the filter this way:
    `add_filter( 'wp_editor_settings', array(
   $this, 'editor_settings' ), 5, 2 );`
 * You may do something like this:
 *     ```
       add_filter( 'wp_editor_settings', 'my_editor_settings', 6, 2 );
       function my_editor_settings( $settings, $editor_id ) {
         if ( strstr( $editor_id, 'black-studio-tinymce' ) ) {
           $settings['editor_height'] = 500;
         }
         return $settings;  
       }
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Editor height’ is closed to new replies.

 * ![](https://ps.w.org/black-studio-tinymce-widget/assets/icon.svg?rev=2627604)
 * [Black Studio TinyMCE Widget](https://wordpress.org/plugins/black-studio-tinymce-widget/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/black-studio-tinymce-widget/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/black-studio-tinymce-widget/)
 * [Active Topics](https://wordpress.org/support/plugin/black-studio-tinymce-widget/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/black-studio-tinymce-widget/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/black-studio-tinymce-widget/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Marco Chiesi](https://wordpress.org/support/users/marcochiesi/)
 * Last activity: [7 years, 4 months ago](https://wordpress.org/support/topic/editor-height-2/#post-11183215)
 * Status: resolved