# 15. Sortable multi input

![](https://2194051268-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MPJdxe1K-sVbh8qB1ld%2F-MPdF8I6DOXcN6v7HwzZ%2F-MPdFFP7Kuo91eDS5vhW%2Fimage.png?alt=media\&token=76e31bc2-895c-4435-8bdc-fcc32c20bd16)

```
'multi_input' => array(
   'type' => 'multi_input',
   'label' => esc_html__( 'Multi Input', 'my-domain' ),
   'options' => array(
      array(
         'key' => 'facebook',
         'label' => esc_html__( 'Facebook', 'my-domain' ),
         'value' => '#facebook'
      ),
      array(
         'key' => 'twitter',
         'label' => esc_html__( 'Twitter', 'my-domain' ),
      ),
      array(
         'key' => 'instagram',
         'label' => esc_html__( 'Instagram', 'my-domain' ),
      ),
   )
),
```

�
