# 31. Button List

![](https://2194051268-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MPJdxe1K-sVbh8qB1ld%2Fuploads%2FRbI4c26sUmuTSYSt1HiC%2Fbutton%20list.png?alt=media\&token=55391c57-cf8d-4351-b417-78a4e73a19b5)

```
'button_list' => array(
	'type'    => 'button_list',
	'buttons' => array(
		array(
			'url'   => '#',
			'text'  => esc_html__( 'Go to first link', 'subdomain' ),
			'label' => 'First link',
		),
		array(
			'url'   => '#',
			'text'  => esc_html__( 'Go to second link', 'subdomain' ),
			'label' => 'Second link',
		),
		array(
			'url'   => '#',
			'text'  => esc_html__( 'Go to third link', 'subdomain' ),
			'label' => 'Third link',
		),
	),
)
```
