gpt4 book ai didi

php - 如何使用 PayPal IPN WordPress 显示支付信息

转载 作者:太空宇宙 更新时间:2023-11-03 16:26:53 25 4
gpt4 key购买 nike

我使用 wordpress 插件 - IPN PayPal,我想在我的首页列表中显示付款信息。我不会使用这个 paypal Hook 。

    <?php

add_action('paypal_ipn_for_wordpress_ipn_response_handler', 'process_recurring_handler', 10, 1);

function process_recurring_handler( $posted )
{
// Parse data from IPN $posted[] array
$first_name = isset($posted['first_name']) ? $posted['first_name'] : '';
$last_name = isset($posted['last_name']) ? $posted['last_name'] : '';
$mc_gross = isset($posted['mc_gross']) ? $posted['mc_gross'] : '';
$recurring_payment_id = isset($posted['recurring_payment_id']) ? $posted['recurring_payment_id'] : '';
$payer_email = isset($posted['payer_email']) ? $posted['payer_email'] : '';
$txn_id = isset($posted['txn_id']) ? $posted['txn_id'] : '';

/**
* At this point you can use the data to generate email notifications,
* update your local database, hit 3rd party web services, or anything
* else you might want to automate based on this type of IPN.
*/
}


?>

这个我添加到function.php但是这个调用如何在页面的表格中显示适当的数据?我试过了

<?php do_action('paypal_ipn_for_wordpress_ipn_response_handler')?>

但它不起作用。我完全外行,帮助

最佳答案

您在此处显示的 Hook /函数将在任何 IPN 访问您的站点时触发。您可以使用它根据触发的 IPN 自动执行您自己的程序。它不会向网站页面/帖子本身显示任何内容。

如果您想在页面/帖子内容上显示 IPN 数据,则需要使用插件提供的简码。查看插件的 developer guide 中的简码选项.

例如,如果你想显示最近 10 条 IPN 记录,你可以使用这个简码:

[paypal_ipn_list field1="txn_id" field2="payment_date" field3="first_name" field4="last_name" field5="mc_gross"]

关于php - 如何使用 PayPal IPN WordPress 显示支付信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31642240/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com