我正在尝试在两个特定日期之间过滤(显示)我网站前端的重力表单条目。一个是今天(当前的当前日期)和在网站后端添加的自定义日期。
因此,只有在自定义日期和当前日期之间提交的条目。
我有两个存储这些日期的变量:
$new_start_date
是自定义日期,并且
$end_date
是现在的日子。日期。
我的代码输出了200个条目,但其中一些条目在自定义开始日期之前。
以下是我的查询代码:
<?php
//Get the Form ID to get the entries from and store it within a varibale
$form_id = GFAPI::get_form(2);
// Get Dates
$date_page_id = get_field( 'update_dates_page_link', 'options', false, false );
$start_date = get_field( 'oak_submission_date', $date_page_id ); // date of the last submission date
$end_date = date( 'Y-m-d', time() ); //get today's date
// Convert start_date to match end_date format
$new_start_date = DateTime::createFromFormat( 'd/m/Y', $start_date );
$new_start_date = $new_start_date->format( 'Y-m-d' );
$search_criteria = array(
'status' => 'active',
'start_date' => $new_start_date,
'end_date' => $end_date,
'field_filters' => array(
array(
'key' => '53', // Trust name field
'value' => 'Oak Trust',
),
array(
'key' => '49', // Grant Made field
'value' => 'No',
),
),
);
$sorting = null;
$paging = array( 'offset' => 0, 'page_size' => 200 );
$entries = GFAPI::get_entries( $form_id, $search_criteria, $sorting, $paging );
//输出到屏幕的代码
foreach ( $entries as $entry) :
echo '<li>';
echo 'ID: '. $entry[68] .' : ' . $entry[2] .' : Submission Date: '. $entry[54];
echo '</li>';
endforeach;
答案 0 :(得分:0)
samples = random_sample(x, 2)
print(next(samples))
...
print(next(samples))
不会返回返回表单的表单ID。试试这个:
GFAPI::get_form(2)