Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

CP Sidebars

Several sidebars for BC Tech project

if ( ! function_exists( 'cp_custom_sidebars' ) ) {

// Register Sidebars
function cp_custom_sidebars() {

	$args = array(
		'id'            => 'home_header_posts',
		'name'          => __( 'Home Header Posts', 'customizr' ),
		'description'   => __( 'This is an alternative to the slider on the home page', 'customizr' ),
	);
	register_sidebar( $args );

	$args = array(
		'id'            => 'publications_sidebar',
		'name'          => __( 'Publications Sidebar', 'customizr' ),
		'description'   => __( 'Use this sidebar only for Publications', 'customizr' ),
	);
	register_sidebar( $args );

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

}