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 |
|---|---|
| 641 | /** |
| 642 | * Fires after a user is completely created or updated via the REST API. |
| 643 | * |
| 644 | * @since 5.0.0 |
| 645 | * |
| 646 | * @param WP_User $user Inserted or updated user object. |
| 647 | * @param WP_REST_Request $request Request object. |
| 648 | * @param bool $creating True when creating a user, false when updating. |
| 649 | */ |
| 650 | do_action( 'rest_after_insert_user', $user, $request, true ); |
| 651 | |
| 652 | $response = $this->prepare_item_for_response( $user, $request ); |
| 653 | $response = rest_ensure_response( $response ); |
| 654 | |
| 655 | $response->set_status( 201 ); |
| 656 | $response->header( 'Location', rest_url( sprintf( '%s/%s/%d', $this->namespace, $this->rest_base, $user_id ) ) ); |
| 657 | |
| 658 | return $response; |
| 659 | } |
| Line | Code |
| 793 | $fields_update = $this->update_additional_fields_for_object( $user, $request ); |
| 794 | |
| 795 | if ( is_wp_error( $fields_update ) ) { |
| 796 | return $fields_update; |
| 797 | } |
| 798 | |
| 799 | $request->set_param( 'context', 'edit' ); |
| 800 | |
| 801 | /** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php */ |
| 802 | do_action( 'rest_after_insert_user', $user, $request, false ); |
| 803 | |
| 804 | $response = $this->prepare_item_for_response( $user, $request ); |
| 805 | $response = rest_ensure_response( $response ); |
| 806 | |
| 807 | return $response; |
| 808 | } |
| 809 | |
| 810 | /** |
| 811 | * Checks if a given request has access to update the current user. |