我使用插件进行wordpress - IPN PayPal,我希望在我的主页网站列表上显示付款。我不会使用这个paypal挂钩。
<?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')?>
但它不起作用。 我完全是laic,帮助
答案 0 :(得分:1)
当您的网站遇到任何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"]