Advertisement
verygoodplugins

Untitled

Jun 9th, 2022
1,067
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.49 KB | None | 0 0
  1. add_filter( 'wpf_redirect_url', 'pp_migration_orientation', 10, 2 );
  2.  
  3. function pp_migration_orientation( $redirect, $post_id ) {
  4.  
  5.     // if being redirected to the orientation page, append e-mail address to the end of the URL to prepopulate the ActiveCampaign form
  6.  
  7.     if ( $redirect == "/website-migration" ) {
  8.  
  9.         $current_user = wp_get_current_user();
  10.  
  11.         $user_email = $current_user->user_email;
  12.  
  13.         return '/website-migration?email='.$user_email;
  14.  
  15.     } else {
  16.         return $redirect;
  17.     }
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement