From e170038ca1993ec43d0bb491df706637d2ac8746 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Tue, 28 Jun 2022 20:47:11 +0000 Subject: [PATCH] Help/About: Add help tab info for available row actions in the Media Library. This changeset fills the existing help tab with more detailed information about available row actions in the Media Library, when using the List view. Props kebbet, audrasjb, costdev, SergeyBiryukov, mukesh27. Fixes #55800. Built from https://develop.svn.wordpress.org/trunk@53586 git-svn-id: http://core.svn.wordpress.org/trunk@53174 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/upload.php | 8 +++++++- wp-includes/version.php | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/wp-admin/upload.php b/wp-admin/upload.php index 18dba6a640..bbba6cc02a 100644 --- a/wp-admin/upload.php +++ b/wp-admin/upload.php @@ -239,7 +239,13 @@ get_current_screen()->add_help_tab( 'id' => 'actions-links', 'title' => __( 'Available Actions' ), 'content' => - '

' . __( 'Hovering over a row reveals action links: Edit, Delete Permanently, and View. Clicking Edit or on the media file’s name displays a simple screen to edit that individual file’s metadata. Clicking Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached). View will take you to the display page for that file.' ) . '

', + '

' . __( 'Hovering over a row reveals action links that allow you to manage media items. You can perform the following actions:' ) . '

' . + '', ) ); get_current_screen()->add_help_tab( diff --git a/wp-includes/version.php b/wp-includes/version.php index e774e53173..e6fd9fe78d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-53585'; +$wp_version = '6.1-alpha-53586'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.