start_controls_section( 'section_query', // Section key array( 'label' => __( 'Query Section', 'best-charity' ), // Section display name 'type' => Controls_Manager::SECTION, 'tab' => Controls_Manager::TAB_CONTENT, // Which tab to display the section in. ) ); /* * After you start the section, you can put as many controls inside the section as you want. */ $this->add_control( 'query_enable', // Control key array( 'label' => __( 'Enable/Disable Query Section', 'best-charity' ), // Control label 'type' => Controls_Manager::SWITCHER, // Type of control 'label_on' => __( 'Show', 'best-charity' ), 'label_off' => __( 'Hide', 'best-charity' ), 'return_value' => 'yes', 'default' => 'yes', ) ); $this->add_control( 'title', // Control key array( 'label' => __( 'Query Tagline', 'best-charity' ), // Control label 'type' => Controls_Manager::TEXT, // Type of control 'default' => '', // Default value for control ) ); $this->add_control( 'query_page_id', // Control key array( 'label' => __( 'Select Page For Query', 'best-charity' ), // Control label /* translators: %s: Description */ 'description' => __( 'It\'s display page title, description and featured image for query heading, description and image', 'best-charity' ), // Control label 'type' => Controls_Manager::SELECT2, // Type of control 'options'=>$this->getTermsForSelect(), 'default' => '', // Default value for control ) ); $this->add_control( 'contact_shortcode', // Control key array( 'label' => __( 'Contact Form shortcode', 'best-charity' ), // Control label 'description' => sprintf( __( 'Use Contact Form 7 Plugins shortcode: Eg: %1$s. %2$s See more here %3$s', 'best-charity' ), '[contact-form-7 id="108" title="Contact form 1"]','','' ), 'type' => Controls_Manager::TEXT, // Type of control 'default' => '', // Default value for control ) ); // Ends the controls section $this->end_controls_section(); } protected function render() { $sample_query = $this->get_settings(); include( get_template_directory() . '/section/query.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; } } // After the Query class is defined, I must register the new widget class with Elementor: Plugin::instance()->widgets_manager->register_widget_type( new \Elementor\Query() );