Skip to content

Instantly share code, notes, and snippets.

@abecoffman
Created February 23, 2014 02:50
Show Gist options
  • Save abecoffman/9166027 to your computer and use it in GitHub Desktop.
Save abecoffman/9166027 to your computer and use it in GitHub Desktop.
Wordpress: SQL Query Post By Category
SELECT * FROM wp_posts
LEFT JOIN wp_term_relationships ON(wp_posts.ID = wp_term_relationships.object_id)
LEFT JOIN wp_term_taxonomy ON(wp_term_relationships.term_taxonomy_id = wp_term_taxonomy.term_taxonomy_id)
LEFT JOIN wp_terms ON(wp_terms.term_id = wp_term_taxonomy.term_id)
WHERE wp_terms.name = 'CATEGORY_NAME'
AND wp_term_taxonomy.taxonomy = 'category'
AND wp_posts.post_status = 'publish'
AND wp_posts.post_type = 'post'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment