Last active
June 6, 2018 10:58
-
-
Save barrykooij/96a07f2246bc66bc59b69fc0630584bb 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 | |
$vehicle_manager = new \Never5\WPCarManager\Vehicle\Manager(); | |
$vehicles = $vehicle_manager->get_vehicles( array(), 'price-asc', - 1, array( | |
'meta_query' => array( | |
array( | |
'key' => 'wpcm_sold', | |
'value' => '1', | |
'compare' => '=', | |
'type' => 'CHAR' | |
) | |
) | |
) ); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment