Guest User

Untitled

a guest
Oct 16th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. $posts = new WP_Query(
  2. array(
  3. 'numberposts' => -1,
  4. 'taxonomy' => 'download_cats',
  5. 'term' => $category->slug,
  6. 'post_type' => 'downloads',
  7. 'meta_query' => array(
  8. array(
  9. 'key' => 'efda_thefile',
  10. 'value' => '',
  11. 'compare' => '!='
  12. )
  13. )
  14. )
  15. );
Add Comment
Please, Sign In to add comment