Solution:
添加wp_editor()
在一个完美的地方藏起来。
<div class="hidden-editor-container" style="display:none;">
<?php wp_editor( \'\', \'editor\' ); ?>
</div>
之后,将编辑器内容分配给全局JS变量。
EDITOR = $(\'.hidden-editor-container\').contents();
最后,加载ajax页面时,追加编辑器内容
$(\'.editor\').append( EDITOR );
tinymce.execCommand( \'mceRemoveEditor\', false, \'editor\' );
tinymce.execCommand( \'mceAddEditor\', false, \'editor\' );