W3cubDocs

/WordPress

get_user_details( string $username )

This function has been deprecated. Use get_user_by() instead.

Deprecated functionality to retrieve user information.

Description

See also

Parameters

$username

(string) (Required) Username.

Source

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);
}

Changelog

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