Guest User

Untitled

a guest
Jan 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. SELECT * FROM wp_posts
  2. LEFT JOIN wp_term_relationships ON
  3. (wp_posts.ID = wp_term_relationships.object_id)
  4. LEFT JOIN wp_term_taxonomy ON
  5. (wp_term_relationships.term_taxonomy_id = wp_term_taxonomy.term_taxonomy_id)
  6. WHERE wp_posts.post_type = 'post'
  7. AND wp_term_taxonomy.taxonomy = 'category'
  8. AND wp_term_taxonomy.term_id = 48
  9. ORDER BY post_date DESC
Add Comment
Please, Sign In to add comment