*/ function clean_gallery_widgets_init() { register_sidebar(array( 'id' => 'header-right', 'name' => esc_html__( 'Header Right', 'clean-gallery' ), 'description' => esc_html__( 'Widgets of this sidebar are located on the right-hand side of the site-header.', 'clean-gallery' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '')); register_sidebar(array( 'id' => 'main-sidebar', 'name' => esc_html__( 'Main Sidebar', 'clean-gallery' ), 'description' => esc_html__( 'Widgets of this sidebar are located at the TOP of your site-sidebar.', 'clean-gallery' ), 'before_widget' => '', 'before_title' => '')); register_sidebar(array( 'id' => 'left-sidebar', 'name' => esc_html__( 'Left Sidebar', 'clean-gallery' ), 'description' => esc_html__( 'Widgets of this sidebar are located on the left-hand side of your site-sidebar.', 'clean-gallery' ), 'before_widget' => '', 'before_title' => '')); register_sidebar(array( 'id' => 'right-sidebar', 'name' => esc_html__( 'Right Sidebar', 'clean-gallery' ), 'description' => esc_html__( 'Widgets of this sidebar are located on the right-hand side of your site-sidebar.', 'clean-gallery' ), 'before_widget' => '', 'before_title' => '')); register_sidebar(array( 'id' => 'bottom-sidebar', 'name' => esc_html__( 'Bottom Sidebar', 'clean-gallery' ), 'description' => esc_html__( 'Widgets of this sidebar are located at the bottom of your site-sidebar.', 'clean-gallery' ), 'before_widget' => '', 'before_title' => '')); register_sidebar(array( 'id' => 'top-fullwidth-area', 'name' => esc_html__( 'Top Full Width Area', 'clean-gallery' ), 'description' => esc_html__( 'Widgets of this sidebar are located at the bottom of the site-header.', 'clean-gallery' ), 'before_widget' => '', 'before_title' => '')); register_sidebar(array( 'id' => 'bottom-fullwidth-area', 'name' => esc_html__( 'Bottom Full Width Area', 'clean-gallery' ), 'description' => esc_html__( 'Widgets of this sidebar are located above the site-footer.', 'clean-gallery' ), 'before_widget' => '', 'before_title' => '')); register_sidebar(array( 'id' => 'top-content', 'name' => esc_html__( 'Top Content', 'clean-gallery' ), 'description' => esc_html__( 'Widgets of this sidebar are located at the top of the posts/pages.', 'clean-gallery' ), 'before_widget' => '', 'before_title' => '')); register_sidebar(array( 'id' => 'bottom-content', 'name' => esc_html__( 'Bottom Content', 'clean-gallery' ), 'description' => esc_html__( 'Widgets of this sidebar are located at the bottom of the posts/pages.', 'clean-gallery' ), 'before_widget' => '', 'before_title' => '')); register_sidebar(array( 'id' => 'top-footer', 'name' => esc_html__( 'Top Footer', 'clean-gallery' ), 'description' => esc_html__( 'Widgets of this sidebar are located at the top of the footer.', 'clean-gallery' ), 'before_widget' => '', 'before_title' => '')); register_sidebar(array( 'id' => 'bottom-footer', 'name' => esc_html__( 'Bottom Footer', 'clean-gallery' ), 'description' => esc_html__( 'Widgets of this sidebar are located at the bottom of the footer.', 'clean-gallery' ), 'before_widget' => '', 'before_title' => '')); register_sidebar(array( 'id' => 'footer-1', 'name' => esc_html__( 'Footer 1', 'clean-gallery' ), 'description' => esc_html__( 'Widgets of this sidebar are located on the column 1 in the footer.', 'clean-gallery' ), 'before_widget' => '', 'before_title' => '')); register_sidebar(array( 'id' => 'footer-2', 'name' => esc_html__( 'Footer 2', 'clean-gallery' ), 'description' => esc_html__( 'Widgets of this sidebar are located on the column 2 in the footer.', 'clean-gallery' ), 'before_widget' => '', 'before_title' => '')); register_sidebar(array( 'id' => 'footer-3', 'name' => esc_html__( 'Footer 3', 'clean-gallery' ), 'description' => esc_html__( 'Widgets of this sidebar are located on the column 3 in the footer.', 'clean-gallery' ), 'before_widget' => '', 'before_title' => '')); register_sidebar(array( 'id' => 'footer-4', 'name' => esc_html__( 'Footer 4', 'clean-gallery' ), 'description' => esc_html__( 'Widgets of this sidebar are located on the column 4 in the footer.', 'clean-gallery' ), 'before_widget' => '', 'before_title' => '')); } add_action( 'widgets_init', 'clean_gallery_widgets_init' );