start_controls_section( 'content_section', [ 'label' => __( 'Content', 'mfn-opts' ), ] ); $this->add_control( 'content', [ 'label' => __( 'Content', 'mfn-opts' ), 'type' => \Elementor\Controls_Manager::CODE, 'default' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.', ] ); $this->end_controls_section(); } /** * Render widget output on the frontend */ protected function render() { $settings = $this->get_settings_for_display(); echo sc_code( $settings, $settings['content'] ); } }