IPN Callback Function
-
Hi,
I’m a newbie when it comes to WP plugins. Kudos for the plugin as it makes the integration to PayPal quite simple.
I understand that I need my_callback_function to process my backend transactions. What I’d like to know is where do I put add_action so it would be safe and not be erased in case the plugin is updated?
The my_callback_function can exist as a separate php, right?
Thank you.
Denz
function my_callback_function($ipn_response) {
// do stuff
}
add_action(‘wp_paypal_ipn_processed’, ‘my_callback_function’);
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘IPN Callback Function’ is closed to new replies.