31. Button List

'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',
		),
	),
)

Last updated