Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.59 KB | None | 0 0
  1. SELECT
  2.     wp_posts.ID,
  3.     wp_posts.post_author,
  4.     wp_posts.post_date,
  5.     wp_posts.post_excerpt,
  6.     wp_posts.post_type,
  7.     wp_posts.post_content
  8. FROM wp_posts AS wp_posts
  9. LEFT JOIN wp_term_relationships AS term_relationships ON wp_posts.ID=term_relationships.object_id
  10. LEFT JOIN wp_term_taxonomy AS term_taxonomy ON term_relationships.term_taxonomy_id=term_taxonomy.term_taxonomy_id
  11. WHERE
  12.     wp_posts.post_author NOT IN ('1')
  13.     AND wp_posts.post_parent = '0'
  14.     AND wp_posts.post_type NOT IN ('page','nav_menu_item')
  15.     AND term_taxonomy.term_id IN (472,625)
  16. ORDER BY wp_posts.ID DESC
  17. LIMIT 0,5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement