| 开发者 |
manishamakhija
vijaybaria krishaweb dhruvang21 |
|---|---|
| 更新时间 | 2025年11月5日 14:21 |
| PHP版本: | 7.4 及以上 |
| WordPress版本: | 6.8 |
| 版权: | GPLv3 or later |
| 版权网址: | 版权信息 |
Plugins menu in WordPress Admin Dashboard.Mass Users Password Reset submenu inside the Users menu.The length of randomly generated password is 8 characters, but by applying filter mupr_password_length you can customize it. For Example: Write this code in function file
add_filter( 'mupr_password_length', 'callback_function' ); function callback_function() { return 6; }
When user will choose to generate new password, an email with the new random password will be sent to users.
Great! I’d love to hear from you at support@krishaweb.com
No, the plugin uses wp_mail function to send an email. If the email is not sent from your site, you can use any SMTP plugin.