Create WordPress User in backend, and automatically create a new post in Custom Post Type with user uame as the Title in the post
Modified your code above to post to the custom post type “Bookings,” set to draft, and use the user ID number as the post title. I also added a return value for the new post id so redirecting to that id or linking to it is much easier. add_action( ‘user_register’, ‘myplugin_registration_save’, 10, 1 ); function … Read more