Thanks, Lester! That’s what I needed!
If somebody have the same issue – here is example of my code
'post_type' => 'product',
'orderby' => 'meta_value_num',
'order' => 'DESC',
'meta_query' => array(
'relation' => 'OR',
array(
'key' => 'ratings_average',
'compare' => 'NOT EXISTS'
),
array(
'key' => 'ratings_average',
'compare' => 'EXISTS'
)
),
-
This reply was modified 7 years, 7 months ago by devdemon.
-
This reply was modified 7 years, 7 months ago by devdemon.