Advertisement
pusatdata

WP-Login Redirect ke Custom Login Frontpage

Apr 23rd, 2017
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. add_action('init','custom_login');
  2.  
  3. function custom_login(){
  4. global $pagenow;
  5. if( 'wp-login.php' == $pagenow && $_GET['action']!="logout") {
  6. wp_redirect('http://YOURSITE.com/');
  7. exit();
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement