How to set WYSIWYG editor width within wp_editor() function?
There are two parameters that you can use to change the size of the text editor generated with wp_editor(), here there are: $settings = array( ‘editor_height’ => 425, // In pixels, takes precedence and has no default value ‘textarea_rows’ => 20, // Has no visible effect if editor_height is set, default is 20 ); If … Read more