Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Sponsors Widget

The area where you place the sponsor’s logos.

if ( ! function_exists( 'dom_sponsors_widget' ) ) {

// Register Sidebars
function dom_sponsors_widget() {

	$args = array(
		'id'            => 'wdgSponsor',
		'class'         => 'sponsor',
		'name'          => __( 'Sponsors Widget', 'dom_sponsors_widget' ),
		'description'   => __( 'Here comes the sponsors logos', 'dom_sponsors_widget' ),
		'before_title'  => '<h2 class="titulo-widget">',
		'after_title'   => '</h2>',
		'before_widget' => '<div class="carrusel">',
		'after_widget'  => '</div>',
	);
	register_sidebar( $args );

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

}