$args = array(
'post_type' => 'product',
'meta_query' => array(
array(
'key' => 'color',
'value' => 'blue',
'compare' => 'NOT LIKE'
)
)
);
$query = new WP_Query( $args );
$makes = ModelCars::newInstance()->getCarMakes() ;
$i = 0;
if($makes):
echo '<table>';
echo '<tr>';
foreach($makes as $make) {
if(osc_version()<320) {
} else {
$i++;
if($i == 1) {
echo '<td>';
}
echo '' . $make['s_name'] . ' ';
if($i == 5) {
echo '</td>';
$i = 0;
}
}
}
echo '</tr>';
echo '</table>';
endif;