# Editor

Component design:&#x20;

<figure><img src="https://2021837383-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MDO9V_qgvV5cQdw04iz%2Fuploads%2FX1hpL1rgQozc9l1wSkh2%2Fimage.png?alt=media&#x26;token=7ef92a6f-89b9-4549-8c26-b52bff53d539" 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)
     )
);
```
