Is it possible to paginate posts correctly that are random ordered?
You can use a filter to modify the ORDER BY statement of WP_query. That way you can manually set the query to use ORDER BY RAND($seed); Mysql RAND() accepts a seed as an optional argument. Using a seed, it will return the same randomized result set each time. So you can generate a random number … Read more