Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save celticwebdesign/c611e3b117f7e925ae40169b98645404 to your computer and use it in GitHub Desktop.
Save celticwebdesign/c611e3b117f7e925ae40169b98645404 to your computer and use it in GitHub Desktop.
http://snipplr.com/view.php?codeview&id=70656
# First:
DELETE FROM wp_postmeta
WHERE post_id IN
(
SELECT id
FROM wp_posts
WHERE post_type = 'attachment'
)
;
# Second:
DELETE FROM wp_posts WHERE post_type = 'attachment'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment