将默认页面编辑器添加到管理员设置页面 时间:2015-01-14 作者:Mark Aroni 有没有办法将标准页面编辑器放入自定义管理设置页面?我可以添加其他带有工具栏的文本区域框,如TinyMCE/CKEditor,但不能复制wordpress在编辑页面时使用的完全相同的编辑文本/html视图。 1 个回复 SO网友:Mark Aroni 哦,这很容易。我使用过:$args = array("textarea_name" => "wpet_options[txt]", \'default_editor\' => \'text\'); wp_editor( \'xxx\', "wpet_options[txt]", $args ); 但我真正想要的是:$post = get_post( 117, \'OBJECT\' ); wp_editor( $post, \'editor\' ); 本页详细说明:http://code.tutsplus.com/articles/quick-tip-using-wp_editor--wp-27136 结束 文章导航