Код: Выделить всё
$posts = new WP_Query( array (
'post__in' => $postids,
'meta_key' => 'ratings_average',
'orderby' => 'meta_value_num',
'order' => 'DESC',
) );
Подробнее здесь: https://stackoverflow.com/questions/232 ... t-in-array
Код: Выделить всё
$posts = new WP_Query( array (
'post__in' => $postids,
'meta_key' => 'ratings_average',
'orderby' => 'meta_value_num',
'order' => 'DESC',
) );