Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

CustomSideBarAside

Sidebar

// Register Sidebars
function custom_sidebar_aside() {

	$args = array(
		'id'            => 'sidebar-aside',
		'name'          => __( 'Secondary Widget Area', 'text_domain' ),
		'description'   => __( 'Aside Widgets.', 'text_domain' ),
		'before_title'  => '<h3 class="widget-title">',
		'after_title'   => '</h3>',
		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
		'after_widget'  => '</aside>',
	);
	register_sidebar( $args );

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