Skip to content

Instantly share code, notes, and snippets.

@leoken
Created November 4, 2013 13:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leoken/7302473 to your computer and use it in GitHub Desktop.
Save leoken/7302473 to your computer and use it in GitHub Desktop.
delete a,b,c,d
FROM wp_posts a
LEFT JOIN wp_term_relationships b ON ( a.ID = b.object_id )
LEFT JOIN wp_postmeta c ON ( a.ID = c.post_id )
LEFT JOIN wp_term_taxonomy d ON ( d.term_taxonomy_id = b.term_taxonomy_id )
LEFT JOIN wp_terms e ON ( e.term_id = d.term_id )
WHERE e.term_id =<category id>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment