Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

ACT Footer Sidebar

Columns for ACT Website footer

// Register Sidebars
function act_footer_sidebars() {

	$args = array(
		'id'            => 'col_1',
		'class'         => 'footer-col',
		'name'          => __( 'Footer Column 1', 'text_domain' ),
		'description'   => __( 'First column in the footer', 'text_domain' ),
		'before_title'  => '<h3>',
		'after_title'   => '</h3>',
		'before_widget' => ' ',
		'after_widget'  => ' ',
	);
	register_sidebar( $args );

	$args = array(
		'id'            => 'col_2',
		'class'         => 'footer-col',
		'name'          => __( 'Footer Column 2', 'text_domain' ),
		'description'   => __( 'Second column in the footer', 'text_domain' ),
		'before_title'  => '<h3>',
		'after_title'   => '</h3>',
		'before_widget' => ' ',
		'after_widget'  => ' ',
	);
	register_sidebar( $args );

	$args = array(
		'id'            => 'col_3',
		'class'         => 'footer-col',
		'name'          => __( 'Footer Column 3', 'text_domain' ),
		'description'   => __( 'Third column in the footer', 'text_domain' ),
		'before_title'  => '<h3>',
		'after_title'   => '</h3>',
		'before_widget' => ' ',
		'after_widget'  => ' ',
	);
	register_sidebar( $args );

	$args = array(
		'id'            => 'col_4',
		'class'         => 'footer-col',
		'name'          => __( 'Footer Column 4', 'text_domain' ),
		'description'   => __( 'Fourth column in the footer', 'text_domain' ),
		'before_title'  => '<h3>',
		'after_title'   => '</h3>',
		'before_widget' => ' ',
		'after_widget'  => ' ',
	);
	register_sidebar( $args );

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