wp_get_current_user()

Retrieve the current user object.


Description

Will set the current user, if the current user is not set. The current user will be set to the logged-in person. If no user is logged-in, then it will set the current user to 0, which is invalid and won’t have any permissions.

See also


Return

(WP_User) Current WP_User instance.


Source

File: wp-includes/pluggable.php

function wp_get_current_user() {
	return _wp_get_current_user();
}


Changelog

Changelog
Version Description
WP-2.0.3 Introduced.