Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Left

hello

// Register Sidebars
function custom_sidebars() {

	$args = array(
		'id'            => 'left',
		'class'         => 'widget',
		'name'          => __( 'Floating Widget', 'text_domain' ),
		'description'   => __( 'It is flexible floating sidebar for your WordPress Theme.', 'text_domain' ),
	);
	register_sidebar( $args );

}
add_action( 'widgets_init', 'custom_sidebars' );