Opened 16 years ago
Closed 13 years ago
#12582 closed enhancement (wontfix)
user_registered action suggestion
| Reported by: | roxaz | Owned by: | westi |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Plugins | Version: | 2.9.2 |
| Severity: | normal | Keywords: | needs-patch |
| Cc: | Focuses: |
Description
I am developing theme that should include user login / registration (so we dont have to see wp-login.php ever again).
Now for login it was easy - with the help wp_login_url user is redirected back to whatever page we need after login.
To achieve same thing for registration i added new action in wp-login.php
$errors = register_new_user($user_login, $user_email);
do_action('user_registered', array($user_login, $user_email, $errors));
using this action now i can make wp-login.php redirect user to main page and display errors there.
Maybe this could be included in wordpress? Or maybe wp_login_url type function that can redirect user wherever needed? I would personally go with action as it gives much more freedom.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
Does [13465] take care of this?