Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Custom_Sidebars

Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts and visual mockups.

if ( ! function_exists( 'imasterdesign_register_custom_sidebars' ) ) {

// Register Sidebars
function imasterdesign_register_custom_sidebars() {

	$args = array(
		'class'         => 'sidebar-widget',
		'name'          => __( 'menu-widget-municipality', 'imasterdesign' ),
		'before_title'  => '<h3>',
		'after_title'   => '</h3>',
		'before_widget' => '<li id="%1$s" class="widget %2$s">',
		'after_widget'  => '</li>',
	);
	register_sidebar( $args );

	$args = array(
		'class'         => 'sidebar-widget',
		'name'          => __( 'menu-widget-administration', 'imasterdesign' ),
		'before_title'  => '<h3>',
		'after_title'   => '</h3>',
		'before_widget' => '<li id="%1$s" class="widget %2$s">',
		'after_widget'  => '</li>',
	);
	register_sidebar( $args );

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

}