Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: insert_user_meta

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
2369       *                                          is not forced.
2370       *     @type string   $show_admin_bar_front Whether to show the admin bar on the front end for the user.
2371       *                                          Default 'true'.
2372       *     @type string   $locale               User's locale. Default empty.
2373       * }
2374       * @param WP_User $user     User object.
2375       * @param bool    $update   Whether the user is being updated rather than created.
2376       * @param array   $userdata The raw array of data passed to wp_insert_user().
2377       */
2378      $meta = apply_filters( 'insert_user_meta', $meta, $user, $update, $userdata );
2379
2380      $custom_meta = array();
2381      if ( array_key_exists( 'meta_input', $userdata ) && is_array( $userdata['meta_input'] ) && ! empty( $userdata['meta_input'] ) ) {
2382           $custom_meta = $userdata['meta_input'];
2383      }
2384
2385      /**
2386       * Filters a user's custom meta values and keys immediately after the user is created or updated
2387       * and before any user meta is inserted or updated.