I include some users in the wp_users table, just with the ID, USER_LOGIN, USER_PASS, USER_NICENAME, and DISPLAY_NAME.
So, for example:
INSERT INTO wp_users (ID, user_login, user_pass, user_nicename, user_email,
user_url, user_registered, user_activation_key, user_status, display_name)
VALUES
(1500, ‘steoliv’, ‘65442334hio’,’steoliv’, ”, ”,’2018-01-09 13:01:00′, ”, 0,
‘Stefany’);
I would like the first login, made by the username and password I created, to redirect the user to a page, which I have already created (site / edit-register) and update the data with the missing information, such as e-mail. Is there a plugin or some code that can do what I want?