Uses
| Uses | Description |
|---|---|
| wp-includes/pluggable.php: get_user_by() | Retrieve user info by a given field |
| wp-includes/functions.php: _deprecated_function() | Mark a function as deprecated and inform when it has been used. |
This function has been deprecated. Use get_user_by() instead.
Deprecated functionality to retrieve user information.
(string) (Required) Username.
File: wp-includes/ms-deprecated.php
function get_user_details( $username ) {
_deprecated_function( __FUNCTION__, '3.0.0', 'get_user_by()' );
return get_user_by('login', $username);
} | Version | Description |
|---|---|
| 3.0.0 | Use get_user_by() |
| MU (3.0.0) | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/get_user_details