How to get user ID during registration and add it to a custom table

Please take a look at user_register hook

This is fired when a new user is registered and conveniently passes you the user ID of the new user.

function function_name( $user_id )
{        
    /* do what you want to do with ID here */
}
add_action( 'user_register', 'function_name');

Leave a Comment