You could hook into the wp_authenticate_user
filter and return an error.
Something like:
add_filter( 'wp_authenticate_user', 'wpse_406123_stop_login', -1 );
function wpse_406123_stop_login() {
$message = new WP_Error( 'login_disabled', __( '<strong>ERROR</strong>: You cannot login at this time' ) );
return $message;
}
You can then change your security keys –the ones that look like this to something different – that will invalidate all current logins.
Related Posts:
- Is there any way to rename or hide wp-login.php?
- Increase of failed login attempts, brute force attacks? [closed]
- How to prefill WordPress registration with social details
- Redirect user using the ‘wp_login_failed’ action hook if the error is ’empty_username’ or ’empty_password’
- wp_signon() does not authenticate user guidance needed
- Disable WordPress 3.6 idle logout / login modal window / session expiration
- How to pass users back and forth using session data?
- Avoid to load default WP styles in login screen
- Integrate recaptcha and wp_signon – what is needed?
- How do I check if a post is private?
- Programmatically log in a wordpress user
- Send reset password link to user from custom lost password form
- Change sign-on URLs for security purposes
- Can’t stop hacker trying to get admin access in WordPress blog after trying many ways [closed]
- Hook for fail and successful login actions
- How long do users stay logged in if they DON’T check remember me?
- How does WordPress track that a certain User is Logged-In
- Mobile users redirected to a different page on login unless linked to another post
- 2 wordpress blogs with 1 users table and 1 login
- How can i add validation to this login form with out it redirecting to the wp-login.php page
- Bootstrap Modal as login page
- Remove WordPress Login Animation
- Redirect users to a front end wp login page
- Redirecting or displaying a message on first login
- Deny a user role to log in after register
- How to create a private login page for admin.?
- wp_get_referer not working properly after wp_redirect
- Login Button CSS
- Force Users to Login – loop problem
- Different homepage for logged in users
- Is there a better way than checking user is logged in to show or hide adminbar?
- How do I replace “Username” in the WordPress login form?
- How can I do a URL redirection when an user uses wrong login details?
- Show errors on custom login form [duplicate]
- Change login_message using title
- Changing WP login credential [closed]
- Index page and random posts needs a forced refresh in order to show new content
- How to change wordpress Log In text
- Can I (and should I) change the login-URL from functions.php?
- WordPress Cant access wp-login.php
- Why is wp-login trying to send an email?
- How to remove ‘wordpress…’ text from page titles in tabs
- Using gettext to translate wp-login.php can’t translate `Back to` into other language
- Code for Log Out Button Yields Strange URL
- Display first name instead of username
- How can I make a login just like on wordpress.org?
- How to Prevent Brute Force Attack on WordPress
- How can I insert wordpress login screen on a different domain?
- autocomplete=”off” WordPress Login
- Why there is a 302 status when my account and password are right?
- login trouble WordPress can change IDs created by hoster site
- 503 Login WordPress [closed]
- WordPress registration page template
- Password recovery URL has error – but not found in code or db
- Cannot Get User id after login success in file wp_login.php
- This webpage has a redirect loop issue
- authenticate user without redirecting
- Temporally disable password to login with empty password?
- Create front end member login
- Logging in to the frontend works correctly but not for WP-Admin
- I can’t access my wp-admin dashboard
- Cannot login to WordPress on one device: login refreshes/an error was encountered whilst trying to authenticate
- Make an order of products without login
- Updated : how to make email optional while user registration using default wordpress form
- I can’t log in to `wp-admin` after changing my domain
- My wordpress site crashes when I login!
- End session screen not close automatically after login
- Unable to login with email address as the username – WordPress
- Bypass login page
- Using WordPress login for a non word-press website
- Using is_user_logged_in() to lock down whole site
- After moving WordPress to its own directory, login doesn’t work
- WordPress login is not showing , there is warning?
- WordPress Redirect After logging
- Issue logging in from second computer
- Login problem with https
- Hide login page and use wp_login_form on ordinary pages
- How to Create a login for for subscribers only
- WordPress auto login user after registration only from a specific page
- Custom Field For Login
- User login without username, only password
- Opening protected page with cookie?
- WordPress logs out on protocol switch
- Login user after registration programmatically
- wp_lostpassword_url not escaped
- Directory authentication initially succeeded, but no valid profile was found (“get entries” procedure)
- Secure login without SSL? [closed]
- Cant login, Password MUST be reset error, after reset
- External Authentication
- Trim the repeated value in URL
- Warning: session_start(): Cannot send session cookie – headers already sent by
- Login to wordpress with filezilla client [closed]
- I can’t login to wordpress dashboard without SSH
- Member Area Login with Fail Message
- Username character requirements
- Users cannot log in using popup
- issue with my wp site after login
- How can I automatically change directory on ssh login?
- How to create a fully functional user registration in WordPress?
- How to remove without touching the pluggable.php the wordpress_logged_in cookie to show the username on login?