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 |
|---|---|
| 1764 | * @type string $user_url The user's url. |
| 1765 | * @type string $user_nicename The user's nice name. Defaults to a URL-safe version of user's login |
| 1766 | * @type string $display_name The user's display name. |
| 1767 | * @type string $user_registered MySQL timestamp describing the moment when the user registered. Defaults to |
| 1768 | * the current UTC timestamp. |
| 1769 | * } |
| 1770 | * @param bool $update Whether the user is being updated rather than created. |
| 1771 | * @param int|null $id ID of the user to be updated, or NULL if the user is being created. |
| 1772 | */ |
| 1773 | $data = apply_filters( 'wp_pre_insert_user_data', $data, $update, $update ? (int) $ID : null ); |
| 1774 | |
| 1775 | if ( $update ) { |
| 1776 | if ( $user_email !== $old_user_data->user_email ) { |
| 1777 | $data['user_activation_key'] = ''; |
| 1778 | } |
| 1779 | $wpdb->update( $wpdb->users, $data, compact( 'ID' ) ); |
| 1780 | $user_id = (int) $ID; |
| 1781 | } else { |
| 1782 | $wpdb->insert( $wpdb->users, $data ); |