Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Lesson Sidebar

// Add Shortcode
function mlcti_sidebar( $atts , $content = null ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'width' => 'auto',
			'height' => 'auto',
			'class' => '',
		),
		$atts,
		'sidebar'
	);

}
add_shortcode( 'sidebar', 'mlcti_sidebar' );