customsidebar
customsidebar
// Register Sidebar function custom_sidebar() { $args = array( 'id' => 'customsidebar', 'name' => __( 'customsidebar', 'text_domain' ), 'description' => __( 'customsidebar', 'text_domain' ), 'class' => 'customsidebar', ); register_sidebar( $args ); } // Hook into the 'widgets_init' action add_action( 'widgets_init', 'custom_sidebar' );