How can I go about deleting abandoned users? I've got atleast 5000 users that are no longer active and I would like to delete them.
Is there a plugin for this?
Thanks.
How can I go about deleting abandoned users? I've got atleast 5000 users that are no longer active and I would like to delete them.
Is there a plugin for this?
Thanks.
I don't know of a plug-in that'll do it, but if you know MySQL you can do it that way.
You need to look at the wp_usermeta table. Grab user_id based on meta_key = 'last_activity' and meta_value <= a cutoff date (in Unix timestamp format).
Once you have your list of user_id's to delete, go to the wp_users table and delete those.
You can write a MySQL command to do this automatically.
Power Tools might do what you want