我正在使用CKEditor作为默认编辑器,我想将TinyMCE编辑器集成到一个插件中。这是我的代码:
function tiny_page() {
add_options_page(‘tiny’, ‘tiny’, ‘manage_options’, __FILE__, ‘tiny_form’);
}
add_action(‘admin_menu’, ‘tiny_page’);
/* load the tiny editor*/
function editor_admin_init() {
wp_enqueue_script(‘word-count’);
wp_enqueue_script(‘post’);
wp_enqueue_script(‘editor’);
wp_enqueue_script(‘media-upload’);
}
function editor_admin_head() {
wp_tiny_mce();
}
add_action(‘admin_init’, ‘editor_admin_init’);
add_action(‘admin_head’, ‘editor_admin_head’);
/* output the plugin page*/
function tiny_form() {
$args = array(“textarea_rows” => 5, “textarea_name” => “editor_content_1?);
wp_editor(“My editor content”, “my_editor_1?, $args);
}
问题是输出插件编辑器是CKEditor而不是微小的...
有什么想法吗?
答案 0 :(得分:0)
来自Wordpress'WP Editor文档:
请注意,传递给wp_editor()函数的ID只能由小写字母组成。没有下划线,没有连字符。其他任何东西都会导致WYSIWYG编辑器出现故障。
尝试将“my_editor_1”更改为“mycustomeditor”或符合文档标准的独特内容。