mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
5cf6c74499
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
15 lines
274 B
PHP
15 lines
274 B
PHP
<?php
|
|
/**
|
|
* Core Users API
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Users
|
|
* @since 2.1.0
|
|
*/
|
|
|
|
/** Core users functionality */
|
|
require_once( ABSPATH . WPINC . '/user-functions.php' );
|
|
|
|
/** WP_User_Query class */
|
|
require_once( ABSPATH . WPINC . '/class-wp-user-query.php' );
|