Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Sidebar – RSM Distinctives

Course / program distinctives sidebar

// Register Sidebar
function saos_register_sidebar_distinctives() {

	$args = array(
		'id'            => 'sidebar-distinctives',
		'name'          => __( 'Distinctives Sidebar', 'text_saos' ),
		'description'   => __( 'A sidebar containing course and program distinctives', 'text_saos' ),
		'class'         => 'sidebar-distinctives',
		'before_title'  => '<h3 class="sidebar-title sidebar-distinctives-title"',
		'after_title'   => '</h3>',
		'before_widget' => '<div id="sidebar-widget sidebar-distinctives-widget">',
		'after_widget'  => '</div>',
	);
	register_sidebar( $args );

}

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