Advertisement
tollmanz

More fixes

Aug 17th, 2011
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. $country_arr = array(
  2. 'key' => '_ct_multiselectbox_4e4980ea9dbd9',
  3. 'value' => array('USA', 'Australia'),
  4. 'compare' => 'IN',
  5. 'type' => 'CHAR'
  6. );
  7. $vacation_arr = array(
  8. 'key' => '_ct_multiselectbox_4e46766e7ada0',
  9. 'value' =>array('Sun', 'Ski'),
  10. 'compare' => 'IN',
  11. 'type' => 'CHAR'
  12. );
  13. $supplier_type = array(
  14. 'taxonomy' => 'wdl_supplier_type',
  15. 'field' => 'slug',
  16. 'terms' => 'wedding_photographers'
  17. );
  18.  
  19. $args = array(
  20. 'post_type' => 'wdl',
  21. 'tax_query' => $supplier_type,
  22. 'meta_query' => array($country_arr,$vacation_arr)
  23. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement