Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: pre_user_login

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

Line Code
115                $add_user_errors = $user_details[ 'errors' ];
116           } else {
117                /**
118                 * Filter the user_login, also known as the username, before it is added to the site.
119                 *
120                 * @since 2.0.3
121                 *
122                 * @param string $user_login The sanitized username.
123                 */
124                $new_user_login = apply_filters( 'pre_user_login', sanitize_user( wp_unslash( $_REQUEST['user_login'] ), true ) );
125                if ( isset( $_POST[ 'noconfirmation' ] ) && is_super_admin() ) {
126                     add_filter( 'wpmu_signup_user_notification', '__return_false' ); // Disable confirmation email
127                     add_filter( 'wpmu_welcome_user_notification', '__return_false' ); // Disable welcome email
128                }
129                wpmu_signup_user( $new_user_login, $new_user_email, array( 'add_to_blog' => $wpdb->blogid, 'new_role' => $_REQUEST['role'] ) );
130                if ( isset( $_POST[ 'noconfirmation' ] ) && is_super_admin() ) {
131                     $key = $wpdb->get_var( $wpdb->prepare( "SELECT activation_key FROM {$wpdb->signups} WHERE user_login = %s AND user_email = %s", $new_user_login, $new_user_email ) );
132                     wpmu_activate_signup( $key );
133                     $redirect = add_query_arg( array('update' => 'addnoconfirmation'), 'user-new.php' );