Guest User

Untitled

a guest
Jan 24th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. success: function(data)
  2. {
  3. if(data.reg==true)
  4. {
  5. jQuery('#reg_message').prepend('Register Successfully. Redirecting...');
  6. window.setTimeout(function()
  7. {
  8. document.location.href = ajax_object.redirecturl;
  9. }, 2000);
  10.  
  11. }
  12.  
  13. wp_localize_script(
  14. 'jquery_login',
  15. 'ajax_object', array(
  16. 'ajax_url' => admin_url('admin-ajax.php'),
  17. 'redirecturl' => get_bloginfo('url') . '/user/dashboard' // Your Address
  18. )
  19. );
Add Comment
Please, Sign In to add comment