start_controls_section( 'section_banner', array( 'label' => __( 'Banner Section', 'best-charity' ), 'type' => Controls_Manager::SECTION, 'tab' => Controls_Manager::TAB_CONTENT, ) ); $this->add_control( 'banner_enable', array( 'label' => __( 'Enable/Disable Banner Section', 'best-charity' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => __( 'Show', 'best-charity' ), 'label_off' => __( 'Hide', 'best-charity' ), 'return_value' => 'yes', 'default' => 'yes', ) ); $this->add_control( 'title', array( 'label' => __( 'Banner Tagline', 'best-charity' ), 'type' => Controls_Manager::TEXT, 'default' => '', ) ); $this->add_control( 'banner_page_id', array( 'label' => __( 'Select Page For Banner', 'best-charity' ), 'description' => __( 'It\'s display page title, description and featured image for banner heading, description and image', 'best-charity' ), 'type' => Controls_Manager::SELECT2, 'options'=>$this->getTermsForSelect(), 'default' => '', ) ); $this->add_control( 'btn_title', array( 'label' => __( 'Button Text', 'best-charity' ), 'type' => Controls_Manager::TEXT, 'default' => '', ) ); $this->add_control( 'btn_url', array( 'label' => __( 'Button Url', 'best-charity' ), 'type' => Controls_Manager::URL, 'placeholder' => 'https://example.com', ) ); $this->end_controls_section(); } protected function render() { $sample_banner = $this->get_settings(); include( get_template_directory() . '/section/banner.php' ); } public function get_categories() { return array( 'best_charity' ); } public function getTermsForSelect( $args = null ){ $posts = get_pages(); $select_posts = array(); foreach( $posts as $post ) { $select_posts[$post->ID] = ucfirst( $post->post_title ); } return $select_posts; } } Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\Banner() );