Paula I am using wp_editor() function to collect the formatted text through a plugin. My concern is related to the wp_editor height. Is it possible to adjust the wp_editor height?
morgan Yes, you can adjust the wp_editor height by using the third argument i.e. $settings $settings = array( 'editor_height' => 425, 'textarea_rows' => 20 ); wp_editor($content, $editor_id, $settings);