这似乎是一个非常简单的问题,但无论我如何切分,即使当GFAPI::count_entries()返回52时,重力表单也只显示20个条目。
代码如下:
$form_id=16;
$search_criteria = array( 'status' => 'active' );
$total_entries = GFAPI::count_entries( $form_id, $search_criteria );
echo '<h3>Count of entries: '.$total_entries.'</h4>';
// shows: Count of entries: 52 as expected
// great, now process each entry and get specific fields
$paging = array( 'offset' => 0, 'page_size' => 60 );
$allentries = GFAPI::get_entries( $form_id, $paging );
echo '<h3>Count of entries: '.count($allentries).'</h4>';
// shows: Count of entries: 20
$entryid = 25; // known data item
$firstEntry = GFAPI::get_entry( $entryid );
echo '<h4>Name for 25: '.$firstEntry[20].'</h4>';
// shows: Name for 25: Todd
$entryid = 189; // known data item
$midEntry = GFAPI::get_entry( $entryid );
echo '<h4>Name for 189: '.$midEntry[20].'</h4>';
// shows: Name for 189: Steve
$entryid = 525; // known data item
$lastEntry = GFAPI::get_entry( $entryid );
echo '<h4>Name for 525: '.$lastEntry[20].'</h4>';
// shows: Name for 525: Graylin我添加了$page参数、$search等,但什么都不起作用……我只收到最近提交的20条记录。
我的目标是遍历条目并获取特定字段(例如,firstname=20等)。
非常感谢这里的方向。
发布于 2016-09-04 04:27:23
试试这个:
$entries = GFAPI::get_entries( $form_id, $search_criteria, null, $paging );https://stackoverflow.com/questions/39309258
复制相似问题