Last active
February 13, 2017 09:50
-
-
Save anthonybudd/7acac982c5a047763b8101be60ca5eee to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
| $where = [ | |
| 'meta_relation' => 'AND', | |
| [ | |
| 'meta_key' => 'color', | |
| 'meta_vale' => 'blue' | |
| ], | |
| [ | |
| 'meta_key' => 'weight', | |
| 'meta_vale' => '250' | |
| ], | |
| [ | |
| 'taxonomy' => 'category', | |
| 'field' => 'slug', | |
| 'operator' => 'OR', | |
| 'terms' => ['home', 'office'] | |
| ], | |
| ]; | |
| $products = Product::where($where); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment