Last active
February 13, 2017 09:57
-
-
Save anthonybudd/08b78dffca1ef2db232a63d4e081a1ce 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 | |
Class Product extends WP_Model | |
{ | |
... | |
public function _finderHeavy(){ | |
return [ | |
'posts_per_page' => '50', | |
'meta_query' => [ | |
[ | |
'key' => 'weight', | |
'value' => 250, | |
'compare' => '<', | |
'type' => 'NUMERIC' | |
] | |
] | |
]; | |
} | |
} | |
$heavyProducts = Product::finder('heavy'); // [Product, Product, Product]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment