Je veux plusieurs orderby meta_query par exemple:
orderby(‘_property_price’ => ‘DESC’,’_property_featured’ => ‘DESC’)
C'est ce que je fais
$query->set('meta_key',array('_property_price','_property_featured'));
$query->set('orderby',array('meta_value'=>'DESC'));
En SQL, cela devrait être comme
ORDER BY _property_price, _property_featured DESC
Une solution à cela?
Peut-être un peu tard…
add_action( 'pre_get_posts', function($query) {
if ( !is_admin() && $query->is_main_query() && is_post_type_archive( '[your_post_type]' ) ) {
$query->set('meta_query', array(
'_property_price' => array(
'key' => '_property_price',
),
'_property_featured' => array(
'key' => '_property_featured',
)
));
$query->set('orderby',array(
'_property_price' => 'DESC',
'_property_featured' => 'DESC'
));
}
return $query;
} );