mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Help/About: Add help tab info for the "Send password reset" row action on Users screen.
This adds a description in the "Available Actions" help tab for the "Send password reset" quick action when hovering over a username in the user list. Follow-up to [50129]. Props kebbet, costdev. Fixes #55801. git-svn-id: https://develop.svn.wordpress.org/trunk@53651 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
b7df15e326
commit
f113ebd6ec
@ -60,6 +60,10 @@ if ( is_multisite() ) {
|
||||
$help .= '<li>' . __( '<strong>Delete</strong> brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using bulk actions.' ) . '</li>';
|
||||
}
|
||||
|
||||
if ( current_user_can( 'edit_users' ) ) {
|
||||
$help .= '<li>' . __( '<strong>Send password reset</strong> sends the user an email with a link to set a new password.' ) . '</li>';
|
||||
}
|
||||
|
||||
$help .= '</ul>';
|
||||
|
||||
get_current_screen()->add_help_tab(
|
||||
|
||||
Loading…
Reference in New Issue
Block a user