Pods fetchRecord会跳过项目

时间:2012-12-09 03:19:45

标签: php wordpress podscms

所以我正在使用Pods抓取一些记录 我有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

为什么会出现这种情况?

1 个答案:

答案 0 :(得分:3)

将第2行更改为:

$thePod->findRecords('slider_order ASC',-1);

15是每页的默认记录,-1返回所有记录。