wppaste
WordPress

do_action( 'edit_user_created_user', int|WP_Error $user_id, string $notify )

Since
4.4.0
Fires after a new user has been created.

Compatibility

WordPress
since 4.4.0
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0).

Parameters

$user_idint|WP_Error
ID of the newly created user or WP_Error on failure.
$notifystring
Type of notification that should happen. See wp_send_new_user_notifications() for more information.

Where this hook fires · 1

  • wp-admin/includes/user.php:252edit_user()

Source code

		 * @since 4.4.0		 *		 * @param int|WP_Error $user_id ID of the newly created user or WP_Error on failure.		 * @param string       $notify  Type of notification that should happen. See		 *                              wp_send_new_user_notifications() for more information.		 */		do_action( 'edit_user_created_user', $user_id, $notify );	}	return $user_id;} /** * Fetch a filtered list of user roles that the current user is

Changelog

Introduced in 4.4.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 6.9.7 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.