我正在尝试回显一个重力表单条目列表,但只想在某个字段内回显出具有特定值的条目。
因此,例如,$ entry ['53']是表单中的一个字段,允许用户从下拉列表中进行选择。只有两种选择。让我们说A和B.我如何改变下面的代码,只显示值为B的条目?
我目前的代码是:
<?php
//Get the Form ID to get the entries from and store it within a varibale
$search_criteria = null;
$sorting = null;
$paging = null;
$entries = GFAPI::get_entries( $form_id, $search_criteria, $sorting, $paging );
echo '<ul>';
foreach($entries as $entry) :
echo '<li>Title: ' . $entry['2'] . '</li>';
endforeach;
echo '</ul>';
?>
非常感谢
答案 0 :(得分:1)
试试这个:
$search_criteria = array(
'status' => 'active',
'field_filters' => array(
array(
'key' => '53',
'value' => 'B',
),
)
);