start_controls_section( 'content_section', [ 'label' => __( 'Content', 'plugin-name' ), 'tab' => \Elementor\Controls_Manager::TAB_CONTENT, ] ); $this->add_control( 'url', [ 'label' => __( 'URL to embed', 'plugin-name' ), 'type' => \Elementor\Controls_Manager::TEXT, 'input_type' => 'url', 'placeholder' => __( 'https://your-link.com', 'plugin-name' ), ] ); $this->end_controls_section(); } protected function render() { $settings = $this->get_settings_for_display(); $html = wp_oembed_get( $settings['url'] ); echo '
'; echo ( $html ) ? $html : $settings['url']; echo '
'; } // protected function _content_template() {} }