Skip to content

Instantly share code, notes, and snippets.

@anthonybudd
Last active February 13, 2017 09:50
Show Gist options
  • Select an option

  • Save anthonybudd/7acac982c5a047763b8101be60ca5eee to your computer and use it in GitHub Desktop.

Select an option

Save anthonybudd/7acac982c5a047763b8101be60ca5eee to your computer and use it in GitHub Desktop.
<?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