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 |
---|---|
145 | $add_user_errors = $user_details[ 'errors' ]; |
146 | } else { |
147 | /** |
148 | * Filters the user_login, also known as the username, before it is added to the site. |
149 | * |
150 | * @since 2.0.3 |
151 | * |
152 | * @param string $user_login The sanitized username. |
153 | */ |
154 | $new_user_login = apply_filters( 'pre_user_login', sanitize_user( wp_unslash( $_REQUEST['user_login'] ), true ) ); |
155 | if ( isset( $_POST[ 'noconfirmation' ] ) && current_user_can( 'manage_network_users' ) ) { |
156 | add_filter( 'wpmu_signup_user_notification', '__return_false' ); // Disable confirmation email |
157 | add_filter( 'wpmu_welcome_user_notification', '__return_false' ); // Disable welcome email |
158 | } |
159 | wpmu_signup_user( $new_user_login, $new_user_email, array( 'add_to_blog' => get_current_blog_id(), 'new_role' => $_REQUEST['role'] ) ); |
160 | if ( isset( $_POST[ 'noconfirmation' ] ) && current_user_can( 'manage_network_users' ) ) { |
161 | $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 ) ); |
162 | $new_user = wpmu_activate_signup( $key ); |
163 | if ( is_wp_error( $new_user ) ) { |