不要将元框用于TinyMCE。它与DOM存在某种冲突。钩住您的代码,包括wp_editor
到edit_page_form
改为操作:
add_action( \'edit_page_form\', \'my_second_editor\' );
function my_second_editor() {
// get and set $content somehow...
wp_editor( $content, \'mysecondeditor\' );
}
请参见
Notes on wp_editor 在法典中。