user_meta_after_user_register
This action will run immediately after user registration
Parameters: $response (object)
Example:
add_action( 'user_meta_after_user_register', 'user_meta_after_user_register_function' );
function user_meta_after_user_register_function( $response ){
$userID = $response->ID;
// Your code goes here
}
Change Log: Since 1.1.2
