libit_sidebar
if ( ! function_exists( 'sidebar_register_libit' ) ) {
// Register Sidebars
function sidebar_register_libit() {
$args = array(
'id' => 'indexSideBar',
'class' => 'sidebar',
'name' => __( 'Index SideBar', 'libit' ),
'description' => __( 'Index SideBar', 'libit' ),
'before_title' => '<h6>',
'after_title' => '</h6>',
'before_widget' => '<div class="aside-widget">',
'after_widget' => '</div>',
);
register_sidebar( $args );
$args = array(
'id' => 'LeftSideBar',
'class' => 'sidebar',
'name' => __( 'Left SideBar', 'libit' ),
'before_title' => '<h6>',
'after_title' => '</h6>',
'before_widget' => '<div class="aside-widget">',
'after_widget' => '</div>',
);
register_sidebar( $args );
}
add_action( 'widgets_init', 'sidebar_register_libit' );
}