Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Home Sidebars Earth

// Register Sidebars
function custom_sidebar() {

	$args = array(
		'id'            => 'footer-sidebar',
		'name'          => __( 'Footer Sidebar', 'text_domain' ),
		'description'   => __( 'Appears in the footer section of the site.', 'text_domain' ),
		'before_title'  => '<h3 class="widget-title">',
		'after_title'   => '</h3>',
		'before_widget' => '<div id="%1$s" class="widget %2$s">',
		'after_widget'  => '</div>',
	);
	register_sidebar( $args );

	$args = array(
		'id'            => 'home-right-sidebar-2',
		'class'         => 'col-md-12 col-lg-4 sidebar',
		'name'          => __( 'Home Right Sidebar 2', 'text_domain' ),
		'description'   => __( 'Sidebar on the right of the Other News section. Mainly used for ads', 'text_domain' ),
		'before_title'  => '<h4 class="category widget-title">',
		'after_title'   => '</h4>',
		'before_widget' => '<div id="%1$s" class="widget %2$s">',
		'after_widget'  => '</div>',
	);
	register_sidebar( $args );

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