Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. case 'custom' :
  2.  
  3. // Send 'em to the specified URL
  4. $redirect_to = $redirection["{$type}_url"];
  5.  
  6. // Allow a few user specific variables
  7. $redirect_to = str_replace(
  8. array(
  9. '%user_id%',
  10. '%user_nicename%'
  11. ),
  12. array(
  13. $user->ID,
  14. $user->user_nicename
  15. ),
  16. $redirect_to
  17. );
  18. break;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement