当id
属性($editor_id
) 包含[]
. 这里不允许他们。
确保第二个参数wp_editor
不包含[]
, 文本再次可见。我已经报告了带有测试用例的回归ticket #26778.
在中使用括号name
属性,使用textarea_name
在settings
参数
示例
$editor_id = \'my_editor_1\';
$editor_name = \'my_editor[1]\';
$settings = array (
\'tabindex\' => FALSE,
\'editor_height\' => 150,
\'resize\' => TRUE,
\'textarea_name\' => $editor_name
);
wp_editor( $post->post_content, $editor_id, $settings );