How to customize wp-signup.php Wordpress MU -
default wordpress mu signup page not allowing choice own password.
i want customize following page
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
Post a Comment