start_controls_section( 'page_layout_section', [ 'label' => __('Page Layout', 'text-domain'), 'tab' => Controls_Manager::TAB_CONTENT, ] ); //Image selector $this->add_control( 'page_layout', [ 'label' => esc_html__('Layout', 'text-domain'), 'type' => \Elementor\CustomControl\ImageSelector_Control::ImageSelector, 'options' => [ 'left-sidebar' => [ 'title' => esc_html__('Left', 'text-domain'), 'url' => 'http://localhost/test/wp-content/themes/test/assets/images/left-sidebar.png', ], 'right-sidebar' => [ 'title' => esc_html__('Right', 'text-domain'), 'url' => 'http://localhost/test/wp-content/themes/test/assets/images/right-sidebar.png', ], 'no-sidebar' => [ 'title' => esc_html__('No Sidebar', 'text-domain'), 'url' => 'http://localhost/test/wp-content/themes/test/assets/images/no-sidebar.png', ], ], 'default' => 'right-sidebar', ] ); $this->end_controls_section(); } }