elemnentor select control

Solutions on MaxInterview for elemnentor select control by the best coders in the world

showing results for - "elemnentor select control"
Isidora
22 Aug 2020
1$this->add_control(
2			'border_style',
3			[
4				'label' => __( 'Border Style', 'plugin-domain' ),
5				'type' => \Elementor\Controls_Manager::SELECT,
6				'default' => 'solid',
7				'options' => [
8					'solid'  => __( 'Solid', 'plugin-domain' ),
9					'dashed' => __( 'Dashed', 'plugin-domain' ),
10					'dotted' => __( 'Dotted', 'plugin-domain' ),
11					'double' => __( 'Double', 'plugin-domain' ),
12					'none' => __( 'None', 'plugin-domain' ),
13				],
14			]
15		);