rest_after_insert_user

rest_after_insert_user

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: wordpress-6.7.2

do_action('rest_after_insert_user') is found 2 times:

  • /wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php line 663
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    * @param WP_User         $user     Inserted or updated user object.
     * @param WP_REST_Request $request  Request object.
     * @param bool            $creating True when creating a user, false when updating.
     */
    do_action( 'rest_after_insert_user', $user, $request, true );
     
    $response = $this->prepare_item_for_response( $user, $request );
    $response = rest_ensure_response( $response );
     
    $response->set_status( 201 );
    $response->header( 'Location', rest_url( sprintf( '%s/%s/%d', $this->namespace, $this->rest_base, $user_id ) ) );
  • /wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php line 812
    809
    810
    811
    812
    813
    814
    815
    816
    817
    818
        $request->set_param( 'context', 'edit' );
     
        /** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php */
        do_action( 'rest_after_insert_user', $user, $request, false );
     
        $response = $this->prepare_item_for_response( $user, $request );
        $response = rest_ensure_response( $response );
     
        return $response;
    }