Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Untitled Snippet

// Register Sidebars
function custom_sidebars() {

	$args = array(
		'id'            => 'hg1',
	);
	register_sidebar( $args );

	$args = array(
		'id'            => 'hg2',
	);
	register_sidebar( $args );

	$args = array(
		'id'            => 'hg3',
	);
	register_sidebar( $args );

	$args = array(
		'id'            => 'hg4',
	);
	register_sidebar( $args );

	$args = array(
		'id'            => 'hg5',
	);
	register_sidebar( $args );

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