Docs: Clarify the file header summary for wp-includes/user.php, the top-level file for the core Users API.

Also adds inline DocBlocks for the `require_once()` calls that now bring in core users functionality and the `WP_User_Query` class, as of [33749].

See #33413. See #33701.

Built from https://develop.svn.wordpress.org/trunk@33897


git-svn-id: http://core.svn.wordpress.org/trunk@33866 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2015-09-04 01:33:24 +00:00
parent 3be117216e
commit 5cf6c74499
2 changed files with 7 additions and 3 deletions

View File

@ -1,10 +1,14 @@
<?php <?php
/** /**
* WordPress User API * Core Users API
* *
* @package WordPress * @package WordPress
* @subpackage Users * @subpackage Users
* @since 2.1.0
*/ */
/** Core users functionality */
require_once( ABSPATH . WPINC . '/user-functions.php' ); require_once( ABSPATH . WPINC . '/user-functions.php' );
require_once( ABSPATH . WPINC . '/class-wp-user-query.php' );
/** WP_User_Query class */
require_once( ABSPATH . WPINC . '/class-wp-user-query.php' );

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.4-alpha-33896'; $wp_version = '4.4-alpha-33897';
/** /**
* 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.