wp_get_current_user() – Retrieve the current user object.
You appear to be a bot. Output may be restricted
Description
Retrieve the current user object.
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.
Usage
$WP_User = wp_get_current_user();
Parameters
Returns
WP_User Current WP_User instance.
Source
File name: wordpress/wp-includes/pluggable.php
Lines:
1 to 3 of 3
function wp_get_current_user() { return _wp_get_current_user(); }