IRC LMS Sidebar
LMS sidebar 101
// Register Sidebars function custom_sidebars() { $args = array( 'id' => 'irclmsbar', 'class' => 'ircsidelms', 'name' => __( 'IRC LMS Sidebar', 'text_domain' ), 'description' => __( 'Learning system sidebar', 'text_domain' ), ); register_sidebar( $args ); } add_action( 'widgets_init', 'custom_sidebars' );