Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

wa_elotrotalento

if ( ! function_exists( 'elotrotalento_widget_tools' ) ) {

// Register Sidebars
function elotrotalento_widget_tools() {

	$args = array(
		'id'            => 'wa_elotrotalento',
		'class'         => 'wa_elotrotalento',
		'name'          => __( 'Widget Area Tools', 'elotrotalento_widget_tools' ),
		'description'   => __( 'Widget Area Tools', 'elotrotalento_widget_tools' ),
	);
	register_sidebar( $args );

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

}