Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Footer Sidebar 1

if ( ! function_exists( 'fy_sidebar' ) ) {

// Register Sidebar
function fy_sidebar() {

	$args = array(
		'id'            => 'footer-sidebar',
		'name'          => __( 'Footer Sidebar', 'text_domain' ),
		'description'   => __( 'Footer Sidebar For Copyright Text', 'text_domain' ),
		'class'         => 'copyright-sidebar',
	);
	register_sidebar( $args );

}

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

}