From 9177df1ee7ba3d0c15559d5ea11e02efed7b9291 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 9 Jul 2022 12:59:11 +0000 Subject: [PATCH] Docs: Improve description for `wp_plugin_update_rows()` and `wp_theme_update_rows()`. Follow-up to [53689]. See #55646. Built from https://develop.svn.wordpress.org/trunk@53690 git-svn-id: http://core.svn.wordpress.org/trunk@53249 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/update.php | 12 ++++++------ wp-includes/version.php | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/wp-admin/includes/update.php b/wp-admin/includes/update.php index 1431c7ea0a..8661af75b5 100644 --- a/wp-admin/includes/update.php +++ b/wp-admin/includes/update.php @@ -220,7 +220,7 @@ function find_core_update( $version, $locale ) { } /** - * Returns Core update footer message. + * Returns core update footer message. * * @since 2.3.0 * @@ -277,7 +277,7 @@ function core_update_footer( $msg = '' ) { } /** - * Returns Core update notification message. + * Returns core update notification message. * * @since 2.3.0 * @@ -374,7 +374,7 @@ function update_right_now_message() { } /** - * Retrieves plugins waiting for an update. + * Retrieves plugins with updates available. * * @since 2.9.0 * @@ -395,7 +395,7 @@ function get_plugin_updates() { } /** - * Hooks after_plugin_row_{$plugin_file} on each plugin row. + * Adds a callback to display update information for plugins with updates available. * * @since 2.9.0 */ @@ -593,7 +593,7 @@ function wp_plugin_update_row( $file, $plugin_data ) { } /** - * Retrieves themes waiting for an update. + * Retrieves themes with updates available. * * @since 2.9.0 * @@ -616,7 +616,7 @@ function get_theme_updates() { } /** - * Hooks after_theme_row_{$theme} on each theme row. + * Adds a callback to display update information for themes with updates available. * * @since 3.1.0 */ diff --git a/wp-includes/version.php b/wp-includes/version.php index 3e944cb509..cf4a17a2bc 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-53689'; +$wp_version = '6.1-alpha-53690'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.