Wordpress tinymce editor height bug
问题 The screenshot shows the issue: toolbar/content height. tinymcse related code: // wordpress plugin: add_filter('admin_head', array($this, 'editor_tiny_mce')); add_filter('tiny_mce_before_init', array($this, 'change_mce_options')); function editor_tiny_mce() { wp_enqueue_script('common'); wp_enqueue_script('jquery-color'); wp_print_scripts('editor'); if (function_exists('add_thickbox')) { add_thickbox(); } wp_print_scripts('media-upload'); if (function_exists('wp_tiny_mce')) { wp_tiny_mce(); }