Hello!
Is it possible to offer the user the option of sorting posts randomly on my website?
Best regards Tim
Hey Tim,
Thank you for the inquiry.
Are you using the Grid Layout? If yes, then you can insert this code in the functions.php file to arrange the posts in random order:
add_filter('avia_post_slide_query','avia_order_by_random', 10, 2);
function avia_order_by_random($query, $params) {
$query['orderby'] = 'title';
$query['orderby'] = 'rand';
return $query;
}
Best regards,
Ismael