我正在开发一个WordPress插件,该插件使用联系表单7 wpcf7_before_send_mail操作挂钩来获取在CF7中输入的电子邮件,如果用户选中一个复选框,则将电子邮件传递给MailChimp和FeedBurner。
MailChimp部分正在运行,因为我可以使用API来传递订阅。然而,根据我的研究,订阅FeedBurner似乎唯一的方法就是使用他们的表单,这对于我开发了几个月的这个插件的简单版本工作得很好,但似乎每当我回应任何东西(例如隐藏)通过wpcf7_before_send_mail钩子,它杀死了CF7。以下是我的代码的相关部分:
add_action( 'wpcf7_before_send_mail', 'before_send_mail' );
function before_send_mail($wpcf7) {
if (is_array($wpcf7->posted_data["subscribe"])){
$subscribe_news = in_array ('Newsletter',$wpcf7->posted_data["subscribe"]);
$subscribe_blog = in_array ('Blog',$wpcf7->posted_data["subscribe"]);
}
$subscribe_email = $wpcf7->posted_data["your-email"];
$subscribe_email = $wpcf7->posted_data["your-email"];
if($subscribe_news){ ktmcf7_submit_mailchimp($subscribe_email); }
if($subscribe_blog){ ktmcf7_submit_feedburner($subscribe_email); }
}
function ktmcf7_submit_feedburner($subscribe_email){
$options = get_option( 'ktm_singlesub_options' );
?>
<script>
alert('feedburner');
window.open('http://feedburner.google.com/fb/a/mailverify?uri=<?php echo $options['feedburner_id'] ?>', 'popup5', 'scrollbars=yes,width=550,height=520');
</script>
<form name="form2" action="http://feedburner.google.com/fb/a/mailverify" method="post" target="popup5" >
<input type="hidden" name="email" value="<?php echo $subscribe_email ?>" />
<input type="hidden" value="<?php echo $options['feedburner_id'] ?>" name="uri"/>
<input type="hidden" name="loc" value="en_US"/>
<!-- input type="submit" value="Subscribe2" style="visibility:hidden;height:5px;" / -->
</form>
<script>
document.form2.submit();
</script>
再次,我尝试了几种不同的方式从这个钩子输出到浏览器(echo,var_dump等,每次arrouw无限旋转。我怎么能解决这个问题?还有另外一个吗?提交Feedburner订阅的方式,而不是使用表格。有网站说API不再可用,但是有一个秘密的后门吗?
感谢。
答案 0 :(得分:1)
理论上,您不想输出表单,您希望使用HTTP帖子将表单变量提交到FeedBurners端点,使用wp_函数发出HTTP POST。
以下代码实现了一个WordPress插件,该插件将从Contact Form 7的wpcf7_before_send_mail
事件处理程序发出HTTP POST:
function wpcf7_do_something (&$WPCF7_ContactForm) {
$url = 'http://your-end-point';
$email = $WPCF7_ContactForm->posted_data['email'];
$post_data = array(
'email' => urlencode($email),
'feedburner_id' => urlencode($feedburner_id));
$result = wp_remote_post( $url, array( 'body' => $post_data ) );
}
add_action("wpcf7_before_send_mail", "wpcf7_do_something");
上面的代码与宣传的一样,但请记住,您可能还需要处理CSRF令牌。 https://en.wikipedia.org/wiki/Cross-site_request_forgery