Freaky Sidebar
Just freaky
if ( ! function_exists( 'freaky_sidebar' ) ) { // Register Sidebar function freaky_sidebar() { $args = array( 'name' => __( 'Freaky Sidebar', 'text_domain' ), 'class' => 'blank', 'before_title' => '<h2 class="widgettitle">', 'after_title' => '</h2>', 'before_widget' => '<li id="%1$s" class="widget %2$s">', 'after_widget' => '</li>', ); register_sidebar( $args ); } // Hook into the 'widgets_init' action add_action( 'widgets_init', 'freaky_sidebar' ); }