Page: lijst zonder pager

echo "<section class='blk blok brr bx3 gat_m br br_l'>";

$args = array ( 'posts_per_page' => -1, 'cat' => 5, 'orderby' => 'rand', 'order' => 'ASC' );
$myposts = get_posts( $args );

foreach( $myposts as $post ) :	setup_postdata($post);
	
// item
						  
endforeach; 

echo "</section>";

Alternatieve foreach

foreach( $wishes as $wish )
{
	...
}

Foreach met nummering

$i = 1;
foreach( $wishes as $wish )
{
	$wishid = $wish->ID;
	$wishtitle = $wish->post_title;
	$wishcontent = $wish->post_content;
	$prijs = get_field('prijs-zonder-euroteken',$wishid);

	echo "<tr>";
	if ( count($wishes) > 3 )
	{
		echo "<td>" . $i . "</td>";
	}
	echo "<td class='t_item'>" . $wishtitle . "</td>";
	echo "<td class='t_opm'>" . $wishcontent . "</td>";
	echo "<td class='t_prijs r'>&euro;&nbsp;" . $prijs . "</td></tr>";	
	
	$i++;
	wp_reset_query();
}