Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_pre_insert_user_data

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
2170       *     @type string $user_nicename   The user's nice name. Defaults to a URL-safe version of user's login
2171       *     @type string $display_name    The user's display name.
2172       *     @type string $user_registered MySQL timestamp describing the moment when the user registered. Defaults to
2173       *                                   the current UTC timestamp.
2174       * }
2175       * @param bool     $update   Whether the user is being updated rather than created.
2176       * @param int|null $user_id  ID of the user to be updated, or NULL if the user is being created.
2177       * @param array    $userdata The raw array of data passed to wp_insert_user().
2178       */
2179      $data = apply_filters( 'wp_pre_insert_user_data', $data, $update, ( $update ? $user_id : null ), $userdata );
2180
2181      if ( empty( $data ) || ! is_array( $data ) ) {
2182           return new WP_Error( 'empty_data', __( 'Not enough data to create this user.' ) );
2183      }
2184
2185      if ( $update ) {
2186           if ( $user_email !== $old_user_data->user_email || $user_pass !== $old_user_data->user_pass ) {
2187                $data['user_activation_key'] = '';
2188           }