From a550b2d14fbcb1f0c7f1ce1473bf53d7ec3760ca Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Wed, 8 Feb 2023 16:12:20 +0000 Subject: [PATCH] Help/About: Add info about the "View" row action link to the Users screen help tab. Props kebbet, audrasjb, SergeyBiryukov, webcommsat. Fixes #57666. git-svn-id: https://develop.svn.wordpress.org/trunk@55297 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/users.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wp-admin/users.php b/src/wp-admin/users.php index d0c10a2051..ba96928bcf 100644 --- a/src/wp-admin/users.php +++ b/src/wp-admin/users.php @@ -60,6 +60,8 @@ if ( is_multisite() ) { $help .= '
  • ' . __( 'Delete 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.' ) . '
  • '; } +$help .= '
  • ' . __( 'View takes you to a public author archive which lists all the posts published by the user.' ) . '
  • '; + if ( current_user_can( 'edit_users' ) ) { $help .= '
  • ' . __( 'Send password reset sends the user an email with a link to set a new password.' ) . '
  • '; }