Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

My new sidebar

Custome sibdebar

if ( ! function_exists( 'custom_sidebar' ) ) {

// Register Sidebar
function custom_sidebar() {

	$args = array(
		'name'          => __( 'My new awesome sidebar', 'text_domain' ),
		'description'   => __( 'Sidebar for blog posts', 'text_domain' ),
	);
	register_sidebar( $args );

}

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

}