the_editor

函数
the_editor ( $content, $id = 'content', $prev_id = 'title', $media_buttons = true, $tab_index = 2, $extended = true )
参数
  • (string) $content Textarea content.
    Required:
  • (string) $id Optional. HTML ID attribute value. Default 'content'.
    Required:
    Default: 'content'
  • (string) $prev_id Optional. Unused.
    Required:
    Default: 'title'
  • (bool) $media_buttons Optional. Whether to display media buttons. Default true.
    Required:
    Default: true
  • (int) $tab_index Optional. Unused.
    Required:
    Default: 2
  • (bool) $extended Optional. Unused.
    Required:
    Default: true
相关
  • wp_editor()
定义位置
相关方法
wp_editorthe_authorthe_generatorthe_metathe_date
引入
2.1.0
弃用
3.3.0

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 ) );
}

常见问题

FAQs
查看更多 >