Created
April 11, 2014 13:58
-
-
Save annalinneajohansson/10471162 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$args = array( | |
'post_type' => 'product', | |
'meta_query' => array( | |
'relation' => 'OR', | |
array( | |
'key' => 'color', | |
'value' => 'blue', | |
'compare' => 'NOT LIKE' | |
), | |
array( | |
'key' => 'price', | |
'value' => array( 20, 100 ), | |
'type' => 'numeric', | |
'compare' => 'BETWEEN' | |
) | |
) | |
); | |
$query = new WP_Query( $args ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment