Inserts an WP User.
When you want to insert an user in your WordPress site from an another account linking option other than 'installation'.
${user.name}
${user.email}
After the element was executed, you'll get either WP_User or WP_Error object as result of wp_insert_user( array|object|WP_User $userdata )
Elements in On Success will be executed in case the user was inserted successfully.
Elements in On User Exists will be executed in case the user already exists.
You'll get the recently created WP_User in form of (${status.user}) object and be able to access its properties like this:
${status.user.ID}${status.user.data.user_login}${status.user.data.user_email}Elements in On Failure will be executed, in case the user was not inserted successfully.
You'll get the WP_Error in form of (${status.wpError}) object and be able to access its properties like this:
${status.wpError.errors}${status.wpError.error_data}