Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

MDL Mega footer

// Register Sidebars
function mdl_sidebars() {

	$args = array(
		'id'            => 'sidebar-footer',
		'name'          => __( 'Footer', 'meh' ),
		'description'   => __( 'MDL Mega footer', 'meh' ),
		'before_title'  => '<input class="mdl-mega-footer__heading-checkbox" type="checkbox" checked><h1 class="mdl-mega-footer__heading">',
		'after_title'   => '</h1><div class="mdl-mega-footer__link-list">',
		'before_widget' => '<section class="mdl-mega-footer__drop-down-section">',
		'after_widget'  => '</div></section>',
	);
	register_sidebar( $args );

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