WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 737 | * Fires after a user's signup information has been written to the database. |
| 738 | * |
| 739 | * @since 4.4.0 |
| 740 | * |
| 741 | * @param string $user The user's requested login name. |
| 742 | * @param string $user_email The user's email address. |
| 743 | * @param string $key The user's activation key |
| 744 | * @param array $meta Additional signup meta. By default, this is an empty array. |
| 745 | */ |
| 746 | do_action( 'after_signup_user', $user, $user_email, $key, $meta ); |
| 747 | } |
| 748 | |
| 749 | /** |
| 750 | * Notify user of signup success. |
| 751 | * |
| 752 | * This is the notification function used when site registration |
| 753 | * is enabled. |
| 754 | * |
| 755 | * Filter {@see 'wpmu_signup_blog_notification'} to bypass this function or |