Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save seemly/4195a5bd82ba33482e10d704386aca30 to your computer and use it in GitHub Desktop.
Save seemly/4195a5bd82ba33482e10d704386aca30 to your computer and use it in GitHub Desktop.
MySQL query to delete Flamingo WordPress plugin Address Book entries
START TRANSACTION;

DELETE FROM wp_posts
WHERE wp_posts.post_type = 'flamingo_contact';

ROLLBACK;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment