Guest User

Untitled

a guest
Apr 23rd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. $args = array(
  2. 'post_status' => 'any',
  3. 'post_type' => 'any',
  4. 'numberposts' => -1,
  5. 'meta_query' => array(
  6. array(
  7. 'key' => 'Asin_unique',
  8. 'value' => '(B006MWDNVI,B00BCMCIS2,B01ARRJFGA)',
  9. 'compare' => 'IN',
  10. )
  11. )
  12. );
  13.  
  14. $posts = get_posts( $args );
  15.  
  16. $args = array(
  17. 'post_status' => 'any',
  18. 'post_type' => 'any',
  19. 'numberposts' => -1,
  20. 'meta_query' => array(
  21. array(
  22. 'key' => 'Asin_unique',
  23. 'value' => array('B006MWDNVI','B00BCMCIS2','B01ARRJFGA'),
  24. 'compare' => 'IN',
  25. )
  26. )
  27. );
  28.  
  29. $posts = get_posts( $args );
Add Comment
Please, Sign In to add comment