我有一个表单,我想通过端点和gform_after_submission将数据发送到第三方位置。 我的表单工作正常,但现在不是在第三方位置(Pardot(添加新字段之后。 这是我用来将数据发送到 Pardot 的旧表单处理程序:
add_action( 'gform_after_submission', 'post_to_third_party', 10, 2 );
function post_to_third_party( $entry, $form ) {
$post_url = $_POST['input_9'];
$body = array(
'First Name' => $_POST['input_1'],
'Last Name' =>$_POST['input_2'],
'email' => $_POST['input_3'],
'Zip' =>$_POST['input_4'],
'Company' =>$_POST['input_5'],
'Phone' => $_POST['input_6']
);
现在在我的第三方表单上,我们添加了一个单选按钮; 我在我的重力形式上添加了那个 radion,我需要将其添加到上面的代码中,我试过了,但似乎它不起作用,因为我想重力形式单选按钮在某种程度上是一个数组...... 所以你能帮我吗?
谢谢
没关系,我找到了解决方案:
$body = array(
'First Name' => $_POST['input_1'],
'Last Name' =>$_POST['input_2'],
'email' => $_POST['input_3'],
'Zip' =>$_POST['input_4'],
'Company' =>$_POST['input_5'],
'Phone' => $_POST['input_6']
'distant-field-name' => $_POST['field-input-name']
(;