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 |
|---|---|
| 157 | $user->user_pass = $pass1; |
| 158 | |
| 159 | if ( !$update && isset( $_POST['user_login'] ) && !validate_username( $_POST['user_login'] ) ) |
| 160 | $errors->add( 'user_login', __( '<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username.' )); |
| 161 | |
| 162 | if ( !$update && username_exists( $user->user_login ) ) |
| 163 | $errors->add( 'user_login', __( '<strong>ERROR</strong>: This username is already registered. Please choose another one.' )); |
| 164 | |
| 165 | /** This filter is documented in wp-includes/user.php */ |
| 166 | $illegal_logins = (array) apply_filters( 'illegal_user_logins', array() ); |
| 167 | |
| 168 | if ( in_array( strtolower( $user->user_login ), array_map( 'strtolower', $illegal_logins ) ) ) { |
| 169 | $errors->add( 'invalid_username', __( '<strong>ERROR</strong>: Sorry, that username is not allowed.' ) ); |
| 170 | } |
| 171 | |
| 172 | /* checking email address */ |
| 173 | if ( empty( $user->user_email ) ) { |
| 174 | $errors->add( 'empty_email', __( '<strong>ERROR</strong>: Please enter an email address.' ), array( 'form-field' => 'email' ) ); |
| 175 | } elseif ( !is_email( $user->user_email ) ) { |