插件管理页面中wp_editor的问题

时间:2014-01-11 18:12:20

标签: php wordpress

我正在尝试将wordpress编辑器添加到我正在使用此代码构建的插件的管理页面中:

$editor_id = "mailbody";
$content = "hello";
$settings = array( 'textarea_name' => 'mailbody' );

wp_editor( $content, $editor_id, $settings ); 

当代码将编辑器的实例返回到插件管理页面时,没有显示按钮,标签不起作用&媒体按钮不起作用。 在控制台中,我收到错误:Uncaught ReferenceError:在单击视觉/文本选项卡时未定义switchEditors。

我出错的任何想法?

1 个答案:

答案 0 :(得分:0)

对于有这个问题的其他人,请看这里: http://www.presscoders.com/2011/11/how-to-reuse-the-post-editor-in-wordpress-3-3/

我的问题是由于此处找到的模板“空白插件”中的错误退出造成的:http://graemewilson.co.nz/wordpress-plugins/wordpress-blank-plugin/