Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save femiyb/85e6044bdb3dfc501188e750cf72566a to your computer and use it in GitHub Desktop.

Select an option

Save femiyb/85e6044bdb3dfc501188e750cf72566a to your computer and use it in GitHub Desktop.
Log out the user after checkout and redirect them to a custom URL
<?php
// Log user out after check out
function my_pmpro_after_checkout($user_id)
{
wp_logout();
}
add_action('pmpro_after_checkout', 'my_pmpro_after_checkout');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment