Advertisement
fauzanjeg

Redirect URL after Register

Nov 29th, 2021
1,151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. /* Redirect URL after Register */
  2. function change_login_reload( $option ) {
  3.     $option['login_reload']   = 'https://your_redirect.com/redirect';
  4.  
  5.     return $option;
  6. }
  7. add_filter( 'jnews_frontend_asset_localize_script', 'change_login_reload' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement