Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Reviews Side Bar

if ( ! function_exists( 'reviews_sidebar' ) ) {

// Register Sidebar
function reviews_sidebar() {

	$args = array(
		'id'            => 'reviews_top_products',
		'name'          => __( 'Reviews Top Products', 'text_domain' ),
		'description'   => __( 'Reviews Top Products', 'text_domain' ),
		'class'         => 'reviewstopProducts',
	);
	register_sidebar( $args );

}

// Hook into the 'widgets_init' action
add_action( 'widgets_init', 'reviews_sidebar' );

}