Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1438201

    Hello!
    Is it possible to offer the user the option of sorting posts randomly on my website?
    Best regards Tim

    #1438246

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.