Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

MCAI

if ( ! function_exists( 'mcai_cliente' ) ) {

// Register Sidebar
function mcai_cliente() {

	$args = array(
	);
	register_sidebar( $args );

}

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

}