Skip to content

Instantly share code, notes, and snippets.

@anthonybudd
Last active February 13, 2017 09:57
Show Gist options
  • Save anthonybudd/08b78dffca1ef2db232a63d4e081a1ce to your computer and use it in GitHub Desktop.
Save anthonybudd/08b78dffca1ef2db232a63d4e081a1ce to your computer and use it in GitHub Desktop.
<?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