Advertisement
designbymerovingi

Logout on transfers

Mar 6th, 2015
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. /**
  2.  * Logout User on Completed Transfers
  3.  * @version 1.0
  4.  */
  5. add_action( 'mycred_transfer_completed', 'mycred_pro_logout_after_transfers', 1, 2 );
  6. function mycred_pro_logout_after_transfers( $transaction_id, $post ) {
  7.  
  8.     wp_clear_auth_cookie();
  9.  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement