Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Sidebar Mista

if ( ! function_exists( 'mista_sidebars' ) ) {

// Register Sidebars
function mista_sidebars() {

	$args = array(
		'id'            => 'mista',
		'class'         => 'sidebar-mista',
		'name'          => __( 'Sidebar MÍSTA', 'customify' ),
		'description'   => __( 'Postranní panel pro MÍSTA', 'customify' ),
		'before_title'  => '<h4 class="widget-title">',
		'after_title'   => '</h4>',
		'before_widget' => '<section id="%1$s" class="widget">',
		'after_widget'  => '</section>',
	);
	register_sidebar( $args );

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

}