In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >
Share
Shulou(Shulou.com)06/02 Report--
This article mainly introduces the method that WordPress forbids specific users to change their passwords, which has certain reference value and can be used for reference by friends who need it. I hope you will learn a lot after reading this article. Next, let the editor take you to learn about it.
How to prevent specific users from changing passwords by WordPress
In some special cases, it may be necessary to prohibit users from using the password reset feature that comes with WordPress, that is, clicking "forget password?" in the login interface. To retrieve the password:
If you want to disable this feature for all users, you can add the following code to the theme's functions.php:
Add_filter ('allow_password_reset',' _ _ return_false')
If you only prohibit certain users from using this feature, you can add the following code to the theme's functions.php:
Add_filter ('allow_password_reset',' no_reset', 10, 2); function no_reset ($bool, $user_id) {$ids = array (3,10); / / user ID if (in_array ($user_id, $ids)) return false; return true to be banned } Thank you for reading this article carefully. I hope it will be helpful for everyone to share the method of WordPress prohibiting specific users from changing passwords. At the same time, I also hope that you will support it, pay attention to the industry information channel, and find out if you have any problems. Detailed solutions are waiting for you to learn!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.