Guest User

Untitled

a guest
Dec 19th, 2018
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. function verify_user_pass($user, $username, $password) {
  2. $login_page = home_url('/login/');
  3. if($username == "" || $password == "") {
  4. wp_redirect($login_page . "?login=empty");
  5. exit;
  6. }
  7. }
  8. add_filter('authenticate', 'verify_user_pass', 1, 3);
Add Comment
Please, Sign In to add comment