Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Footer Left

Widget Area

// Register Sidebar
function footer_left() {

	$args = array(
		'id'            => 'footer-left',
		'name'          => __( 'Footer Left', 'text_domain' ),
		'description'   => __( 'This is the Left Footer Widget Area', 'text_domain' ),
		'class'         => 'footer-left',
		'before_title'  => '<h3 class="widget-title"',
		'after_title'   => '</h3>',
		'before_widget' => '<li id="%1$s" class="widget%2$s">',
		'after_widget'  => '</li>',
	);
	register_sidebar( $args );

}

// Hook into the 'widgets_init' action
add_action( 'widgets_init', 'footer_left' );