WordPress选项树框架的滑块需要tinyMCE编辑器

时间:2015-04-30 09:31:09

标签: wordpress

我正在研究选项树框架主题模式的滑块,但我需要将滑块描述字段作为丰富的tinymce编辑器,有什么办法可以做到这一点吗?

1 个答案:

答案 0 :(得分:0)

您可以使用简单的文本区域而不是textarea。

array(
    'id'          => 'demo_textarea_simple',
    'label'       => __( 'Textarea Simple', 'theme-text-domain' ),
    'desc'        => __( 'The Textarea Simple option type is a large string value used for custom code or text in the theme. The Textarea Simple does not have a WYSIWYG editor.', 'theme-text-domain' ),
    'std'         => '',
    'type'        => 'textarea-simple',
    'section'     => 'option_types',
  ),