ARCHIVE /
[Drupal] 在客製表單中加入 wysiwyg 欄位
Drupal 8/9 要使用 TextFormat1 類型的欄位
$form['body'] = array(
'#type' => 'text_format',
'#title' => 'Body',
'#format' => 'full_html',
'#default_value' => '<p>The quick brown fox jumped over the lazy dog.</p>',
);