Forta Footer Menu Widget Areas
// Register Sidebars
function footer_menu_area() {
$args = array(
'id' => 'column-one',
'class' => 'footer-menu',
'name' => __( 'Column One Menu Area', 'text_domain' ),
'description' => __( 'Area for custom footer menu links in first column', 'text_domain' ),
'before_widget' => ' ',
'after_widget' => ' ',
);
register_sidebar( $args );
$args = array(
'id' => 'column-two',
'class' => 'footer-menu',
'name' => __( 'Column Two Menu Area', 'text_domain' ),
'description' => __( 'Area for custom footer menu links in second column', 'text_domain' ),
'before_widget' => ' ',
'after_widget' => ' ',
);
register_sidebar( $args );
}
add_action( 'widgets_init', 'footer_menu_area' );