Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

HHH footer

if ( ! function_exists( 'hhh_footer_widget' ) ) {

// Register Sidebars
function hhh_footer_widget() {

	$args = array(
		'id'            => 'hhh_footer',
		'class'         => 'hhhfooter',
		'name'          => 'hhh_footer',
		'description'   => 'HHH footer',
	);
	register_sidebar( $args );

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

}