そのため、ポッドを使用していくつかのレコードを取得しています。
31 個のレコードがありますが、while($thePod->fetchRecord())
ループは 15 回しか実行されません
$thePod = new Pod('projects');
$thePod->findRecords('slider_order ASC');
$totalItems = $thePod->getTotalRows(); // = 31
while($thePod->fetchRecord()) :
$i++;
endwhile;
echo $i.'/'.$totalItems.' looped through'; // displays 15/31
なぜこれが起こっているのですか?