Skip to content

Instantly share code, notes, and snippets.

@barrykooij
Last active June 6, 2018 10:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barrykooij/96a07f2246bc66bc59b69fc0630584bb to your computer and use it in GitHub Desktop.
Save barrykooij/96a07f2246bc66bc59b69fc0630584bb to your computer and use it in GitHub Desktop.
<?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