Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

setya-sidbars

Right/left sidebars

// Register Sidebars
function setya_sidebar() {

	$args = array(
		'id'            => 'setya-sidebars',
		'class'         => 'setya-sidebar',
		'name'          => 'Sidebars-right',
		'description'   => 'Setya-sidebars',
		'before_title'  => '<h3 class="widget-title">',
		'after_title'   => '</h3>',
		'before_widget' => '<div id="%1$s" class="widget %2$s">',
		'after_widget'  => '</div>',
	);
	register_sidebar( $args );

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