Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Footer sidebar

// Register Sidebar
function sidebar_footer() {

	$args = array(
		'id'            => 'footer-one',
		'name'          => __( 'Footer sidebar one', 'owd' ),
		'description'   => __( 'This area is for footer one widget', 'owd' ),
	);
	register_sidebar( $args );

}

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