start_controls_section( 'section_title', [ 'label' => __( 'HTML Code', 'elementor' ), ] ); $this->add_control( 'html', [ 'label' => '', 'type' => Controls_Manager::CODE, 'default' => '', 'placeholder' => __( 'Enter your code', 'elementor' ), 'show_label' => false, ] ); $this->end_controls_section(); } /** * Render HTML widget output on the frontend. * * Written in PHP and used to generate the final HTML. * * @since 1.0.0 * @access protected */ protected function render() { echo $this->get_settings( 'html' ); } /** * Render HTML widget output in the editor. * * Written as a Backbone JavaScript template and used to generate the live preview. * * @since 1.0.0 * @access protected */ protected function _content_template() { ?> {{{ settings.html }}}