Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

sidebars

if ( ! function_exists( 'agro_custom_sidebars' ) ) {

// Register Sidebars
function agro_custom_sidebars() {

	$args = array(
		'id'            => 'articulos-sidebar',
		'class'         => 'articulos-sidebar',
		'name'          => __( 'Artículos', 'agronews' ),
		'description'   => __( 'Barra lateral que se mostrará en los artículos (página individual de artículo)', 'agronews' ),
	);
	register_sidebar( $args );

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

}