Create users by importing from CSV, with User ID assigned from CSV
No, there’s no way to do this inside the WordPress codebase and calls such as wp_insert_user, because as mentioned the user ID is set automatically by the database because the ID field in wp_users is an AUTOINCREMENT field in WordPress. Therefore, to do what you want you have a couple of options: 1. Update as … Read more