やるとすれば下記のようになると思います。
// footer カラム数を4カラムに変更.
function my_footer_change($footer_widget_area_count){
$footer_widget_area_count = 4;
return $footer_widget_area_count;
}
function my_lightning_after_setup_theme() {
add_filter( 'lightning_footer_widget_area_count','my_footer_change' );
}
add_action( 'after_setup_theme', 'my_lightning_after_setup_theme' );