I have the following query to get the data from custom post type.
$query = new WP_Query(array(
'post_type' => 'wpgems',
'nopaging' => true,
'post_status' => array('publish', 'pending', 'future'),
'meta_key' => 'wcu_dept',
'meta_value' => 'SOME_VALUE',
'orderby' => 'title',
'order' => 'ASC'
));
Now I want to sort it with multiple values like title should be descending than another value ascending.