Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: illegal_user_logins

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

This hook occurs 2 times in this file.

Line Code
2272      }
2273
2274      /**
2275       * Filters the list of disallowed usernames.
2276       *
2277       * @since 4.4.0
2278       *
2279       * @param array $usernames Array of disallowed usernames.
2280       */
2281      $illegal_logins = (array) apply_filters( 'illegal_user_logins', array() );
2282
2283      if ( in_array( strtolower( $user_login ), array_map( 'strtolower', $illegal_logins ), true ) ) {
2284           return new WP_Error( 'invalid_username', __( 'Sorry, that username is not allowed.' ) );
2285      }
2286
2287      /*
2288       * If a nicename is provided, remove unsafe user characters before using it.
2289       * Otherwise build a nicename from the user_login.
2290       */
 
Line Code
3504      if ( '' === $sanitized_user_login ) {
3505           $errors->add( 'empty_username', __( '<strong>Error:</strong> Please enter a username.' ) );
3506      } elseif ( ! validate_username( $user_login ) ) {
3507           $errors->add( 'invalid_username', __( '<strong>Error:</strong> This username is invalid because it uses illegal characters. Please enter a valid username.' ) );
3508           $sanitized_user_login = '';
3509      } elseif ( username_exists( $sanitized_user_login ) ) {
3510           $errors->add( 'username_exists', __( '<strong>Error:</strong> This username is already registered. Please choose another one.' ) );
3511      } else {
3512           /** This filter is documented in wp-includes/user.php */
3513           $illegal_user_logins = (array) apply_filters( 'illegal_user_logins', array() );
3514           if ( in_array( strtolower( $sanitized_user_login ), array_map( 'strtolower', $illegal_user_logins ), true ) ) {
3515                $errors->add( 'invalid_username', __( '<strong>Error:</strong> Sorry, that username is not allowed.' ) );
3516           }
3517      }
3518
3519      // Check the email address.
3520      if ( '' === $user_email ) {
3521           $errors->add( 'empty_email', __( '<strong>Error:</strong> Please type your email address.' ) );
3522      } elseif ( ! is_email( $user_email ) ) {