Advertisement
tollmanz

Country custom field query

Aug 17th, 2011
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. $args = array(
  2. 'meta_query' => array(
  3. array(
  4. 'key' => 'country',
  5. 'value' => '(USA, Australia)',
  6. 'compare' => '=',
  7. 'type' => 'CHAR'
  8. )
  9. )
  10. );
  11. $query = new WP_Query( );
  12. $query->query($args);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement