我想在我的WordPress插件中使用TinyMCE。我想为自定义文本框和文本区域添加TinyMCE编辑器。
我尝试在下面添加代码来加载TinyMCE编辑器脚本。
wp_enqueue_script( 'tiny_mce');
但是这不会在我的管理页面中加载TinyMCE编辑器。当我初始化TinyMCE时,它给我错误,因为没有定义TinyMCE。
这里的任何人都知道如何在我的管理页面上加载TinyMCE脚本吗?
答案 0 :(得分:1)
WordPress默认wp_editor()
函数以Posts和Pages中使用的典型方式在页面中呈现编辑器。
您可以像
一样使用它$content = ''; // Initial content for the editor
$editor_id = 'editor_id'; //HTML id attribute value for the textarea and TinyMCE
wp_editor( $content, $editor_id );