Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Races Sidebar for Texas 10 Series

if ( ! function_exists( 'races_sidebar' ) ) {

// Register Sidebar
function races_sidebar() {

	$args = array(
		'id'            => 'sidebar-races',
		'name'          => __( 'Races Sidebar', 'text_domain' ),
		'description'   => __( 'Sidebar included in all the races', 'text_domain' ),
		'class'         => 'sidebar-races',
	);
	register_sidebar( $args );

}

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

}