这是4.8中引入的JS版本编辑器的一个很好的用例:https://make.wordpress.org/core/2017/05/20/editor-api-changes-in-4-8/
添加了新的编辑器API#35760. 它使从JS动态实例化编辑器成为可能。
下面是一个如何使用它的示例(从Rheinard Korf的示例中窃取here):
// Remember to wp_enqueue_editor(); inside PHP.
// Add editor
wp.editor.initialize(
\'test-editor\',
{
tinymce: {
wpautop:true,
plugins : \'charmap colorpicker compat3x directionality fullscreen hr image lists media paste tabfocus textcolor wordpress wpautoresize wpdialogs wpeditimage wpemoji wpgallery wplink wptextpattern wpview\',
toolbar1: \'formatselect bold italic | bullist numlist | blockquote | alignleft aligncenter alignright | link unlink | wp_more | spellchecker\'
},
quicktags: true
}
);
在哪里
test-editor
将是
textarea
你想做一个编辑器。