wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_currentuserinfo › WordPress Function

Seit0.71
Veraltet4.5.0
get_currentuserinfo ( Keine Parameter )
Siehe:
Gibt zurück:
  • (bool|WP_User) False on XMLRPC Request and invalid auth cookie, WP_User instance otherwise.
Definiert in:
Codex:

Populate global variables with information about the currently logged in user.



Quellcode

function get_currentuserinfo() {
	_deprecated_function( __FUNCTION__, '4.5.0', 'wp_get_current_user()' );

	return _wp_get_current_user();
}