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
1725       *     @type string   $admin_color          The color scheme for a user's admin screen. Default 'fresh'.
1726       *     @type int|bool $use_ssl              Whether to force SSL on the user's admin area. 0|false if SSL is
1727       *                                          not forced.
1728       *     @type bool     $show_admin_bar_front Whether to show the admin bar on the front end for the user.
1729       *                                          Default true.
1730        * }
1731       * @param WP_User $user   User object.
1732       * @param bool    $update Whether the user is being updated rather than created.
1733        */
1734      $meta = apply_filters( 'insert_user_meta', $meta, $user, $update );
1735
1736      // Update user meta.
1737      foreach ( $meta as $key => $value ) {
1738           update_user_meta( $user_id, $key, $value );
1739      }
1740
1741      foreach ( wp_get_user_contact_methods( $user ) as $key => $value ) {
1742           if ( isset( $userdata[ $key ] ) ) {
1743                update_user_meta( $user_id, $key, $userdata[ $key ] );