Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Sidebar top info

Sidebar top info

// Register Sidebars
function custom_sidebars_top_info() {

	$args = array(
		'id'            => 'top-info',
		'name'          => __( 'Top info', 'text_domain' ),
		'description'   => __( 'Top info', 'text_domain' ),
	);
	register_sidebar( $args );

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