WordPress / five-for-the-future

Plugins and themes for the Five for the Future subsite
https://wordpress.org/five-for-the-future/
44 stars 21 forks source link

Prevent duplicate contributors for same company, remove existing #236

Open iandunn opened 10 months ago

iandunn commented 10 months ago

Some companies have added the same contributor twice, probably by accident or because they forgot they were already added.

We should prevent that from happening, and remove the existing instances.

Examples

There's probably more, though.

This query helps to find them, but it'll also include folks who are legitimately sponsored by multiple companies. Make sure you don't prevent/remove that.

SELECT post_title, count(*) title_count
FROM `wporg_668_posts`
where post_type = '5ftf_contributor' and post_status = 'publish'
group by post_title
having title_count > 1