Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How to delete users that have not clicked activation link


Lance Willett
Participant

@lancewillett

If you are comfortable with SQL and database lookups, you can find the relevant signups with a query like this:

SELECT * FROM wp_signups WHERE active = 0;

Then you can delete the signups that you want to reuse for testing.

Skip to toolbar