您可以使用以下(mu-)插件来更改高度。您只需根据需要调整高度。
<?php
defined( \'ABSPATH\' ) OR exit;
/**
* Plugin Name: (#83974) WCM TinyMCE height
*/
add_filter( \'the_editor\', \'wpse83974_tinymce_height\' );
function wpse83974_tinymce_height( $html )
{
return str_replace(
array( \'cols="40"\', \' style="height: 360\' )
,array( \'cols="400"\', \' style="height: 3600\' )
,$html
);
}