'Side Sidebar',
'id' => 'side_sidebar_area',
'description' => esc_html__( "This sidebar will be shown at the side of content","alhena-lite"),
'before_widget' => '
',
'after_widget' => '
',
'before_title' => ''
));
register_sidebar(array(
'name' => 'Home Sidebar',
'id' => 'home_sidebar_area',
'description' => esc_html__( "This sidebar will be shown for the homepage","alhena-lite"),
'before_widget' => '',
'after_widget' => '
',
'before_title' => ''
));
register_sidebar(array(
'name' => 'Top Sidebar',
'id' => 'top_sidebar_area',
'description' => esc_html__( "This sidebar will be shown before the content","alhena-lite"),
'before_widget' => '',
'before_title' => ''
));
register_sidebar(array(
'name' => 'Category Sidebar',
'id' => 'category_sidebar_area',
'description' => esc_html__( "This sidebar will be shown at the side of archive","alhena-lite"),
'before_widget' => '',
'after_widget' => '
',
'before_title' => ''
));
register_sidebar(array(
'name' => 'Footer Sidebar',
'id' => 'footer_sidebar_area',
'description' => esc_html__( "This sidebar will be shown after the content","alhena-lite"),
'before_widget' => '',
'before_title' => ''
));
}
add_action( 'widgets_init', 'alhenalite_loadwidgets' );
}
?>