esc_html__( 'Sidebar', 'borax' ),
'id' => 'sidebar',
'description' => esc_html__( 'Add widgets here.', 'borax' ),
'before_widget' => '
',
'after_widget' => '
',
'before_title' => '',
)
);
register_sidebar( array(
'name' => esc_html__( 'Footer Widget 1', 'borax' ),
'id' => 'footer-link-1',
'description' => esc_html__( 'Footer widget for link position.', 'borax' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer Widget 2', 'borax' ),
'id' => 'footer-link-2',
'description' => esc_html__( 'Footer widget for link position.', 'borax' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer Widget 3', 'borax' ),
'id' => 'footer-link-3',
'description' => esc_html__( 'Footer widget for link position.', 'borax' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer Widget 4', 'borax' ),
'id' => 'footer-link-4',
'description' => esc_html__( 'Footer widget for link position.', 'borax' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer Subscribe Widget', 'borax' ),
'id' => 'footer-subscribe',
'description' => esc_html__( 'Footer widget for subscribe email form position.', 'borax' ),
'before_widget' => '',
'after_widget' => '
',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer Bottom Link Widget', 'borax' ),
'id' => 'footer-bottom-link',
'description' => esc_html__( 'Footer widget for bottom link position.', 'borax' ),
) );
}
add_action( 'widgets_init', 'borax_widgets_init' );