sliber
aa
if ( ! function_exists( 'custom_sidebar' ) ) { // Register Sidebar function custom_sidebar() { $args = array( 'id' => '1', 'name' => __( 'regester', 'text_domain' ), 'description' => __( 'userinfo', 'text_domain' ), ); register_sidebar( $args ); } // Hook into the 'widgets_init' action add_action( 'widgets_init', 'custom_sidebar' ); }