Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #159544

    danielmoutou
    Participant

    Alleluia, this code worked for me:

    add_filter('pre_get_posts', 'limit_archive_posts');
    function limit_archive_posts($query){
        if ($query->is_archive) {
            $query->set('posts_per_page', 36);
        }
        return $query;
    }

    Cheers,
    Daniel

    #159633

    Christian
    Moderator

    Glad you’ve sorted it out Daniel.