您需要的是两件事:
在wp_tiny_mce
加载所有需要的JS etc的函数下面的代码:此函数用于设置JS etc:
// Setup the TinyMCE stuff and target it at our desired textarea
wp_tiny_mce( true, array( "editor_selector" => \'tinymce_class\' ) );
您需要编辑器框的HTML:
<div class="editor_container">
<textarea class="large-text tinymce_class" rows="5" id="tinymce_1" name="name">
<?php echo esc_html($value) ?>
</textarea>
</div>