文本域 textarea

文本域即<textarea>标签

范例:

  1. $ashu_meta[] = array(
  2.   'name' => 'Texearea Example,
  3.   'id'   => 'textarea_example',
  4.   'desc' => 'A textarea example, Default content:"Default content."',
  5.   'std'  => 'Default content.',
  6.   'type' => 'textarea',
  7.   'multiple' => false
  8. );

详解:

name - 自定义字段标题

id - 自定义字段名称,获取数据时用。敬告:请确配置文件中所有id都不相同,同时避免post\page\title等词。

desc - 自定义字段描述信息

std - 默认值

type - 值为textarea时,本条字段类型为文本域

multiple - 输入框自增,若值为true,则输入框的个数可点击增加。