# 17. Repeater

![](https://2194051268-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MPJdxe1K-sVbh8qB1ld%2F-MPdGlqsy7CupG_91A52%2F-MPdGorPMVWL2TM3NyvF%2Fimage.png?alt=media\&token=1aa19ebc-366a-4c73-8991-2133ee569dad)

```
'field_t' => array(
   'type' => 'repeater',
   'label' => esc_html__( 'Repeater fields', 'my-domain' ),
   'fields' => array(
      'field_1' => array(
         'type' => 'text',
         'label' => esc_html__( 'Text 1', 'my-domain' ),
      ),
      'field_2' => array(
         'type' => 'select',
         'label' => esc_html__( 'Select 2', 'my-domain' ),
         'options' => array(
            'text' => esc_html__('Text', 'my-domain'),
            'video' => esc_html__('Video', 'my-domain'),
            'slide' => esc_html__('Slide', 'my-domain'),
         ),
      ),
   )
),
```

�
