Guest User

Untitled

a guest
Sep 26th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <?php
  2.  
  3. add_action( 'init', 'custom_init_function' );
  4. function custom_init_function() {
  5.  
  6. global $pagenow;
  7.  
  8. if( ! is_user_logged_in() && 'wp-login.php' == $pagenow ) {
  9. wp_redirect( home_url() ); // redirect URL
  10. exit();
  11. }
  12. }
Add Comment
Please, Sign In to add comment