Created
February 23, 2014 02:50
-
-
Save abecoffman/9166027 to your computer and use it in GitHub Desktop.
Wordpress: SQL Query Post By Category
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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