Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Time Share Legal Footer Sidebar

// Register Sidebars
function time_share_legal() {

	$args = array(
		'id'            => 'footer-logo',
		'class'         => '.footer-logo',
		'name'          => __( 'Footer Logo', 'text_domain' ),
		'description'   => __( 'Add your footer logo here', 'text_domain' ),
		'before_title'  => '<h3 class="footer-widget-title">',
		'after_title'   => '</h3>',
		'before_widget' => '<div class="footer-widget">',
		'after_widget'  => '</div>',
	);
	register_sidebar( $args );

	$args = array(
		'id'            => 'footer-info',
		'class'         => 'footer-info',
		'name'          => __( 'Footer Information', 'text_domain' ),
		'description'   => __( 'Enter your Copyright, Footer Links and Address/Phone', 'text_domain' ),
		'before_title'  => '<h3 class="widget-title">',
		'after_title'   => '</h3>',
		'before_widget' => '<div class="footer-widget">',
		'after_widget'  => '</div>',
	);
	register_sidebar( $args );

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