Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

[4toques] Widget rodapé central

Rodapé central 4toques

// Register Sidebars
function rodape_central() {

	$args = array(
		'id'            => 'rodape-central',
		'name'          => __( 'Rodapé Central', 'curves' ),
		'description'   => __( 'Adiciona algum widget no centro do rodapé', 'curves' ),
		'before_widget' => '<div id="%1$s" class="widget %2$s">',
		'after_widget'  => '</div>',
	);
	register_sidebar( $args );

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