From 8385861e3d4dd4612578f3ca835029ac1fc30d62 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 30 Aug 2024 17:31:18 +0000 Subject: [PATCH] Docs: Clarify the description for `wp_dropdown_users()`. Follow-up to [8873]. See #61608. Built from https://develop.svn.wordpress.org/trunk@58955 git-svn-id: http://core.svn.wordpress.org/trunk@58351 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/user.php | 10 ++++------ wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/wp-includes/user.php b/wp-includes/user.php index 5a05fff2f4..94468a5ff1 100644 --- a/wp-includes/user.php +++ b/wp-includes/user.php @@ -1549,12 +1549,10 @@ function setup_userdata( $for_user_id = 0 ) { /** * Creates dropdown HTML content of users. * - * The content can either be displayed, which it is by default or retrieved by - * setting the 'echo' argument. The 'include' and 'exclude' arguments do not - * need to be used; all users will be displayed in that case. Only one can be - * used, either 'include' or 'exclude', but not both. - * - * The available arguments are as follows: + * The content can either be displayed, which it is by default, or retrieved by + * setting the 'echo' argument to false. The 'include' and 'exclude' arguments + * are optional; if they are not specified, all users will be displayed. Only one + * can be used in a single call, either 'include' or 'exclude', but not both. * * @since 2.3.0 * @since 4.5.0 Added the 'display_name_with_login' value for 'show'. diff --git a/wp-includes/version.php b/wp-includes/version.php index 986ed1dfa0..54b354c3d7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-alpha-58954'; +$wp_version = '6.7-alpha-58955'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.