How to have sample page for each new register users in a membership website
There’s a hook called user_register() that you could use. It happens during the creation of the new user – right after they are added to the database and have an ID, but before the usermeta like first_name has been saved. You can then use wp_insert_post() to add the new post and assign them as the … Read more