Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Video Slider Widget

class Video_Slider extends WP_Widget {

	public function __construct() {

		parent::__construct(
			'',
			__( 'Video Slider Widget', 'Batachcreativeco_19' ),
		);

	}

	public function widget( $args, $instance ) {

	}

	public function form( $instance ) {

	}

	public function update( $new_instance, $old_instance ) {

	}

}

function register_widgets() {
	register_widget( 'Video_Slider' );
}
add_action( 'widgets_init', 'register_widgets' );