Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Standings

// Register Sidebar
function custom_sidebar() {

	$args = array(
		'id'            => 'standings',
		'name'          => __( 'Standings', 'text_domain' ),
		'description'   => __( 'Standing by Division', 'text_domain' ),
		'class'         => 'score',
	);
	register_sidebar( $args );

}

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