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.
This hook occurs 2 times in this file.
| Line | Code |
|---|---|
| 517 | /** |
| 518 | * Fires immediately after a user is created or updated via the REST API. |
| 519 | * |
| 520 | * @since 4.7.0 |
| 521 | * |
| 522 | * @param WP_User $user Inserted or updated user object. |
| 523 | * @param WP_REST_Request $request Request object. |
| 524 | * @param bool $creating True when creating a user, false when updating. |
| 525 | */ |
| 526 | do_action( 'rest_insert_user', $user, $request, true ); |
| 527 | |
| 528 | if ( ! empty( $request['roles'] ) && ! empty( $schema['properties']['roles'] ) ) { |
| 529 | array_map( array( $user, 'add_role' ), $request['roles'] ); |
| 530 | } |
| 531 | |
| 532 | if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) { |
| 533 | $meta_update = $this->meta->update_value( $request['meta'], $user_id ); |
| 534 | |
| 535 | if ( is_wp_error( $meta_update ) ) { |
| Line | Code |
| 630 | $user_id = wp_update_user( wp_slash( (array) $user ) ); |
| 631 | |
| 632 | if ( is_wp_error( $user_id ) ) { |
| 633 | return $user_id; |
| 634 | } |
| 635 | |
| 636 | $user = get_user_by( 'id', $user_id ); |
| 637 | |
| 638 | /** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php */ |
| 639 | do_action( 'rest_insert_user', $user, $request, false ); |
| 640 | |
| 641 | if ( ! empty( $request['roles'] ) ) { |
| 642 | array_map( array( $user, 'add_role' ), $request['roles'] ); |
| 643 | } |
| 644 | |
| 645 | $schema = $this->get_item_schema(); |
| 646 | |
| 647 | if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) { |
| 648 | $meta_update = $this->meta->update_value( $request['meta'], $id ); |