我正在使用Caldera Forms wordpress插件,并且试图弄清楚如何在提交表单后打印用户特定的Caldera表单,最新提交的条目ID。
因此我可以将其存储到变量中,然后向用户显示表单结果。
有人知道怎么做吗..?
我尝试实现两个动作挂钩 1. caldera_forms_submit_complete 2. caldera_forms_submit_post_process
add_action( 'caldera_forms_submit_complete', function( $form, $form_link_array, $process_id, $entry_id ){
//change form ID to match your form
if('CF5bf550e7a2554' == $form[ 'ID' ])
{
$entry_id = get_user_meta( get_current_user_id(), 'form_entry_id' );
if($entry_id) {
echo $entry_id." id exists";
$_SESSION['cfentryid'] = $entry_id;
exit;
}
}
}, 10, 4);
我希望将条目ID存储到会话中,而似乎代码块甚至没有执行。