Docs: Various improvements to inline documentation.

See #62281
Built from https://develop.svn.wordpress.org/trunk@59927


git-svn-id: http://core.svn.wordpress.org/trunk@59269 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn 2025-03-04 14:19:22 +00:00
parent 4c4fd4d1b2
commit 6933eaf608
4 changed files with 8 additions and 3 deletions

View File

@ -11,7 +11,8 @@
* Core class used to implement the WP_User object. * Core class used to implement the WP_User object.
* *
* @since 2.0.0 * @since 2.0.0
* @since 6.8.0 The `user_pass` property is now hashed using bcrypt instead of phpass. * @since 6.8.0 The `user_pass` property is now hashed using bcrypt by default instead of phpass.
* Existing passwords may still be hashed using phpass.
* *
* @property string $nickname * @property string $nickname
* @property string $description * @property string $description

View File

@ -154,6 +154,7 @@ function wp_version_check( $extra_stats = array(), $force_check = false ) {
* Please exercise extreme caution. * Please exercise extreme caution.
* *
* @since 4.9.0 * @since 4.9.0
* @since 6.1.0 Added `$extensions`, `$platform_flags`, and `$image_support` to the `$query` parameter.
* *
* @param array $query { * @param array $query {
* Version check query arguments. * Version check query arguments.
@ -167,6 +168,9 @@ function wp_version_check( $extra_stats = array(), $force_check = false ) {
* @type int $users Number of users on this WordPress installation. * @type int $users Number of users on this WordPress installation.
* @type int $multisite_enabled Whether this WordPress installation uses Multisite. * @type int $multisite_enabled Whether this WordPress installation uses Multisite.
* @type int $initial_db_version Database version of WordPress at time of installation. * @type int $initial_db_version Database version of WordPress at time of installation.
* @type array $extensions List of PHP extensions and their versions.
* @type array $platform_flags List containing the operating system name and bit support.
* @type array $image_support List of image formats supported by GD and Imagick.
* } * }
*/ */
$query = apply_filters( 'core_version_check_query_args', $query ); $query = apply_filters( 'core_version_check_query_args', $query );

View File

@ -2456,7 +2456,7 @@ function wp_insert_user( $userdata ) {
* *
* @since 4.9.0 * @since 4.9.0
* @since 5.8.0 The `$userdata` parameter was added. * @since 5.8.0 The `$userdata` parameter was added.
* @since 6.8.0 The user's password is now hashed using bcrypt instead of phpass. * @since 6.8.0 The user's password is now hashed using bcrypt by default instead of phpass.
* *
* @param array $data { * @param array $data {
* Values and keys for the user. * Values and keys for the user.

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.8-alpha-59926'; $wp_version = '6.8-alpha-59927';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.