wp_get_current_user()
Retrieves 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
Source
File: wp-includes/pluggable.php
function wp_get_current_user() {
return _wp_get_current_user();
}
Changelog
Version | Description |
---|---|
2.0.3 | Introduced. |