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

    Hi, how can I change the sorting of the magazine element to be random?

    Thanks.

    #996484

    Hey DROR,
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    add_filter('avf_magazine_entries_query', 'avf_magazine_entries_custom_query');
    
    function avf_magazine_entries_custom_query ( $query ) {
    $query['orderby'] = 'rand';
    return $query;
    }

    Please see Order & Orderby Parameters for more options

    Best regards,
    Mike

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