start_controls_section( 'content_section', [ 'label' => esc_html__( 'The Post Grid', 'the-post-grid' ), 'tab' => \Elementor\Controls_Manager::TAB_CONTENT, ] ); $this->add_control( 'post_grid_id', [ 'type' => \Elementor\Controls_Manager::SELECT2, 'id' => 'style', 'label' => esc_html__( 'Post Grid', 'the-post-grid' ), 'options' => Fns::getAllTPGShortCodeList(), ] ); $this->end_controls_section(); } protected function render() { $settings = $this->get_settings_for_display(); if ( isset( $settings['post_grid_id'] ) && ! empty( $settings['post_grid_id'] ) && $id = $settings['post_grid_id'] ) { echo do_shortcode( '[the-post-grid id="' . absint( $id ) . '"]' ); } else { echo 'Please select a post grid'; } } }