目前,我通过使用类似的代码结构发布到第 3 方,进一步增强了重力形式的功能:
add_action( 'gform_after_submission', 'post_to_third_party', 10, 2 );
function post_to_third_party( $entry, $form ) {
$endpoint_url = 'https://thirdparty.com';
$body = array(
'first_name' => rgar( $entry, '1.3' ),
'last_name' => rgar( $entry, '1.6' ),
'message' => rgar( $entry, '3' ),
);
GFCommon::log_debug( 'gform_after_submission: body => ' . print_r( $body, true ) );
$response = wp_remote_post( $endpoint_url, array( 'body' => $body ) );
GFCommon::log_debug( 'gform_after_submission: response => ' . print_r( $response, true ) );
}
我知道您可以注入各种挂钩点,但我在自定义确认方面遇到了问题。我能够创建过滤器并进行自定义确认,但我希望它是动态的。
当我将数据发送给第 3 方时,在过滤器操作结束之前将响应发送回,我想将该数据传递给 custom_confirmation 挂钩。我怎样才能做到这一点?有没有办法操纵从 after_form_submission 钩子传递的 $form 或 $entry 变量?
add_filter( 'gform_confirmation', 'custom_confirmation', 10, 4 );
function custom_confirmation( $confirmation, $form, $entry, $ajax ) {
if( $form['id'] == '101' && $form['success'] == 1 ) {
$confirmation = array( 'redirect' => 'http://www.google.com' );
} elseif( $form['id'] == '101' && $form['success'] == 0) {
$confirmation = "failed";
}
return $confirmation;
}
像我上面发布的那样可能吗?
拉丁的传说