esc_html__( 'Bootstrap Coach Sidebar', 'bootstrap-coach' ),
'id' => 'sidebar-1',
'description' => 'This is the sidebar to be displayed on Bootstrap Coach pages and posts.',
'before_widget' => '',
'before_title' => '
',
) );
for($i = 1; $i<5; $i++){
register_sidebar(
array(
'name' => esc_html__( 'Footer Widget', 'bootstrap-coach' ) . " " . $i,
'id' => 'footer-'.$i.'',
'description' => esc_html__( 'Add widgets here.', 'bootstrap-coach' ),
'before_widget' => '',
'before_title' => '',
)
);
}
}
add_action( 'widgets_init', 'bootstrap_coach_widgets_init' );