Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

sidebar

if ( ! function_exists( 'sidebar_blog' ) ) {

// Register Sidebars
function sidebar_blog() {

	$args = array(
		'id'            => 'sidebarblog',
		'class'         => 'sidebarblog',
		'name'          => __( 'Sidebar Blog', 'sidebar_blog' ),
		'description'   => __( 'Un area de widget que se muestra en el blog', 'sidebar_blog' ),
	);
	register_sidebar( $args );

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

}