Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

hello

how are you

if ( ! function_exists( 'custom_sidebars' ) ) {

// Register Sidebars
function custom_sidebars() {

	$args = array(
		'id'            => 'fhfhfhgh',
		'class'         => 'ghhghgh',
		'name'          => __( 'ghghg', 'text_domain' ),
		'description'   => __( 'ghghg', 'text_domain' ),
	);
	register_sidebar( $args );

	$args = array(
		'id'            => 'hghgh',
		'class'         => 'ghgh',
		'name'          => __( 'hghg', 'text_domain' ),
		'description'   => __( 'ghgh', 'text_domain' ),
	);
	register_sidebar( $args );

	$args = array(
		'id'            => 'ghghg',
		'class'         => 'ghgh',
		'name'          => __( 'ghghg', 'text_domain' ),
		'description'   => __( 'ghghgh', 'text_domain' ),
	);
	register_sidebar( $args );

	$args = array(
		'id'            => 'ghghg',
		'class'         => 'ghghg',
		'name'          => __( 'ghghg', 'text_domain' ),
		'description'   => __( 'ghhgh', 'text_domain' ),
	);
	register_sidebar( $args );

	$args = array(
		'id'            => 'ghghg',
		'class'         => 'ghghg',
		'name'          => __( 'ghghg', 'text_domain' ),
		'description'   => __( 'ghgg', 'text_domain' ),
	);
	register_sidebar( $args );

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

}