From b8bc65042ab4c57cefc46bbf9eb8d56e00188dee Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 4 Apr 2022 18:43:02 +0000 Subject: [PATCH] Docs: Add missing description for `$taxnow` global in various functions. Follow-up to [53060], [53061]. See #54729. Built from https://develop.svn.wordpress.org/trunk@53062 git-svn-id: http://core.svn.wordpress.org/trunk@52651 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/admin.php | 2 +- wp-admin/includes/class-wp-screen.php | 2 +- wp-includes/version.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/admin.php b/wp-admin/admin.php index 40154857a1..3718b47c3c 100644 --- a/wp-admin/admin.php +++ b/wp-admin/admin.php @@ -125,7 +125,7 @@ wp_enqueue_script( 'common' ); * @global string $hook_suffix * @global string $plugin_page * @global string $typenow The post type of the current screen. - * @global string $taxnow + * @global string $taxnow The taxonomy of the current screen. */ global $pagenow, $wp_importers, $hook_suffix, $plugin_page, $typenow, $taxnow; diff --git a/wp-admin/includes/class-wp-screen.php b/wp-admin/includes/class-wp-screen.php index 0760e436b7..155c54f88d 100644 --- a/wp-admin/includes/class-wp-screen.php +++ b/wp-admin/includes/class-wp-screen.php @@ -403,7 +403,7 @@ final class WP_Screen { * * @global WP_Screen $current_screen WordPress current screen object. * @global string $typenow The post type of the current screen. - * @global string $taxnow + * @global string $taxnow The taxonomy of the current screen. */ public function set_current_screen() { global $current_screen, $taxnow, $typenow; diff --git a/wp-includes/version.php b/wp-includes/version.php index d1eb527787..f74b846764 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0-alpha-53061'; +$wp_version = '6.0-alpha-53062'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.