Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

TGC Footer Sidebar Area

// Register Sidebars
function custom_sidebars() {

	$args = array(
		'id'            => 'footer_sidebar',
		'class'         => 'footer-widget-area',
		'name'          => __( 'Footer Columns', 'text_domain' ),
		'description'   => __( 'Widget area for for footer columns', 'text_domain' ),
		'before_title'  => '<div class="footer-widget">',
		'after_widget'  => '</div>',
	);
	register_sidebar( $args );

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