Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Yes, it is possible to modify the size of TinyMCE using the wpeditorsettings filter. You can use the following code snippet to do this:

function modify_tinymce( $settings ) {
    $settings['height'] = '500px'; // Replace with your desired height
    return $settings;
}
add_filter( 'wp_editor_settings', 'modify_tinymce' );

This code will modify the height of TinyMCE editor to 500px. You can replace this value with any size you want.