custom registration form [duplicate]

you can use Cimy User Extra Fields , its a plugin that lets you add extra user fields to the registration form. or you can create your own custom registration page with your extra fields by following this great article http://www.cozmoslabs.com/2010/05/31/wordpress-user-registration-template-and-custom-user-profile-fields/

trying to Change to wp_register_sidebar_widget

function widget_sidebarLogin() { echo “Content of Your Widget”; } wp_register_sidebar_widget( ‘sidebarLoginId’, // your unique widget id ‘SidebarLogin’, // widget name ‘widget_sidebarLogin’, // callback function array( // options ‘description’ => ‘Some Descriptions’ ) );