# Editor

Component design:&#x20;

<figure><img src="https://691205473-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MDTL6WUldKvxQaP8jzz%2Fuploads%2FHWKigzH7UHWIQ008yKiw%2Fimage.png?alt=media&#x26;token=ceddc47b-82f5-4f32-bb8e-18fdbf3a1b02" alt=""><figcaption></figcaption></figure>

How to use a component:

```php
STM_LMS_Templates::show_lms_template(
    'components/wp-editor',
    array(
        'id'        => string, (required)
        'content'   => object, (required) standard wordpress the_content() or another
        'settings'  => array(
            'quicktags'     => false,
            'media_buttons' => false,
            'textarea_rows' => 13,
         ), (required) settings of wp_editor()
         'dark_mode' => bool, (required)
     )
);
```
