I'm trying to have multiple album-loops on my start page like this:
`
<?php $counterloop1 = 0;
while (next_album()){ ?>
<!-- do stuff -->
<?php if ($counterloop1==2) {break;}
$counterloop1++; }
?>
<?php $counterloop2 = 0;
while (next_album()){ ?>
<!-- do stuff -->
<?php if ($counterloop2==2) {break;}
$counterloop2++; }
?>
`
The displayed results in the second loop seem to miss the results from the first loop. Is there a way to reset the query, so that i can start the second loop with the first entry again?