目前正在为WordPress编写一个插件,其中包括一个用于WordPress内置编辑器的TinyMCE插件。
但是,当我在自定义管理页面上打印TinyMCE编辑器时:
wp_editor( $content, $editor_id, $settings );
编辑器没有附带上述插件。我如何用wp_editor包含它们?
谢谢。
答案 0 :(得分:2)
这只是我的愚蠢。我在添加TinyMCE插件之前创建了WordPress菜单..
因此,对于其他人来说,这些愚蠢的事情,请确保你有
add_filter("mce_external_plugins", array( $this, 'add_tinymce_plugin' ) );
add_filter('mce_buttons', array( $this, 'register_my_tc_button' ) );
// Rest of the code for adding your TinyMCE Plugins
// ...
在你开始抛弃你的
之前wp_editor()
期待它的运作!