Help/About: Tweak Help tabs on Users screen for consistency with Posts screen.
Props bnap00, Arena94. Fixes #40553. git-svn-id: https://develop.svn.wordpress.org/trunk@41566 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
fa9892a8a3
commit
3dff531717
|
@ -34,8 +34,8 @@ get_current_screen()->add_help_tab( array(
|
||||||
) ) ;
|
) ) ;
|
||||||
|
|
||||||
get_current_screen()->add_help_tab( array(
|
get_current_screen()->add_help_tab( array(
|
||||||
'id' => 'screen-display',
|
'id' => 'screen-content',
|
||||||
'title' => __('Screen Display'),
|
'title' => __('Screen Content'),
|
||||||
'content' => '<p>' . __('You can customize the display of this screen in a number of ways:') . '</p>' .
|
'content' => '<p>' . __('You can customize the display of this screen in a number of ways:') . '</p>' .
|
||||||
'<ul>' .
|
'<ul>' .
|
||||||
'<li>' . __('You can hide/display columns based on your needs and decide how many users to list per screen using the Screen Options tab.') . '</li>' .
|
'<li>' . __('You can hide/display columns based on your needs and decide how many users to list per screen using the Screen Options tab.') . '</li>' .
|
||||||
|
@ -46,18 +46,18 @@ get_current_screen()->add_help_tab( array(
|
||||||
|
|
||||||
$help = '<p>' . __('Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:') . '</p>' .
|
$help = '<p>' . __('Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:') . '</p>' .
|
||||||
'<ul>' .
|
'<ul>' .
|
||||||
'<li>' . __('Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username.') . '</li>';
|
'<li>' . __('<strong>Edit</strong> takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username.') . '</li>';
|
||||||
|
|
||||||
if ( is_multisite() )
|
if ( is_multisite() )
|
||||||
$help .= '<li>' . __( 'Remove allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using Bulk Actions.' ) . '</li>';
|
$help .= '<li>' . __( '<strong>Remove</strong> allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using Bulk Actions.' ) . '</li>';
|
||||||
else
|
else
|
||||||
$help .= '<li>' . __( '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.' ) . '</li>';
|
$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>';
|
||||||
|
|
||||||
$help .= '</ul>';
|
$help .= '</ul>';
|
||||||
|
|
||||||
get_current_screen()->add_help_tab( array(
|
get_current_screen()->add_help_tab( array(
|
||||||
'id' => 'actions',
|
'id' => 'action-links',
|
||||||
'title' => __('Actions'),
|
'title' => __('Available Actions'),
|
||||||
'content' => $help,
|
'content' => $help,
|
||||||
) );
|
) );
|
||||||
unset( $help );
|
unset( $help );
|
||||||
|
|
Loading…
Reference in New Issue