How to customize wp-signup.php Wordpress MU -


default wordpress mu signup page not allowing choice own password.

i want customize following page

http://blog.co.in/wp-signup.php

the solution choice own password in wordpress mu recode part of ms-functions.php .

when registering wordpress mu calls : wpmu_signup_user() calls wpmu_signup_user_notification() send notification , activation key.

after you'll launch activation link call wpmu_activate_signup($key) , password generated :

$password = wp_generate_password( 12, false ); 

so can try put form before launching method, or bypass activation stuff , directly call :

wpmu_create_user($user_login, $password, $user_email); 

but i'm not sure it's best solution.


Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -