Answer the question
In order to leave comments, you need to log in
How to sort random posts by date in WordPress?
It is necessary to display several random entries sorted by date.
$query = new WP_Query(
[
'post__in' => $post_id_array,
'posts_per_page' => $number,
'orderby' => [ 'rand', 'date'],
'order' => 'DESC',
]
);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question