我不确定你是否能在数组中设置cols“number”。
但实现所需的一种方法是向wp\\U编辑器添加一个类。
$settings = array(
\'quicktags\' => array(\'buttons\' => \'em,strong,link\',),
\'quicktags\' => true,
\'tinymce\' => true,
\'textarea_rows\' => 20,
\'classes\' => \'yourclass\',
);
或者在调用wp\\U编辑器时:
<?php wp_editor( $content, $editor_id, $settings = array(\'editor_class\'=>\'yourclass\') ); ?>
然后只需在css中设置宽度:
.yourclass {
width: 400px !important; //add !important if your style is being overriden
}