esc_html__('Sidebar', 'batpa'),
'id' => 'sidebar-1',
'description' => esc_html__('Add widgets here to appear in your sidebar on blog posts and archive pages.', 'batpa'),
'before_widget' => '',
'before_title' => '
',
));
register_sidebar(array(
'name' => esc_html__('Page Sidebar', 'batpa'),
'id' => 'sidebar-2',
'description' => esc_html__('Add widgets here to appear in your pages and posts', 'batpa'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => esc_html__('Footer 1', 'batpa'),
'id' => 'footer-1',
'description' => esc_html__('Add widgets here to appear in your footer.', 'batpa'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => esc_html__('Footer 2', 'batpa'),
'id' => 'footer-2',
'description' => esc_html__('Add widgets here to appear in your footer.', 'batpa'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => esc_html__('Footer 3', 'batpa'),
'id' => 'footer-3',
'description' => esc_html__('Add widgets here to appear in your footer.', 'batpa'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => esc_html__('Footer 4', 'batpa'),
'id' => 'footer-4',
'description' => esc_html__('Add widgets here to appear in your footer.', 'batpa'),
'before_widget' => '',
'before_title' => '',
));
}
add_action('widgets_init', 'batpa_widgets_init');