
如何解决MAMP无法正常启动运行的问题
the_editor ( $content, $id = 'content', $prev_id = 'title', $media_buttons = true, $tab_index = 2, $extended = true )
the_editor – 这个函数用来显示WordPress的文章编辑器。它通常用在WordPress网站的管理方面。它需要几个参数,允许自定义编辑器,如编辑器的ID和要编辑的内容类型。
显示一个编辑器。TinyMCE,HTML,或两者都是。
function the_editor($content, $id = 'content', $prev_id = 'title', $media_buttons = true, $tab_index = 2, $extended = true) { _deprecated_function( __FUNCTION__, '3.3.0', 'wp_editor()' ); wp_editor( $content, $id, array( 'media_buttons' => $media_buttons ) ); }