Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

DM-OCTA-SIDEBAR

// Register Sidebar
function dm_octa_custom_sidebar() {

	$args = array(
		'id'            => 'sidebar_footer_1',
		'name'          => 'Footer Widget 1',
	);
	register_sidebar( $args );

}

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