I was trying this code to get current user info, but showing nothing. My WordPress version is 3.3.1
<?php
wp_get_current_user();
/**
* @example Safe usage: $current_user = wp_get_current_user();
* if ( !($current_user instanceof WP_User) )
* return;
*/
echo 'Username: ' . $current_user->user_login . '<br />';
echo 'User email: ' . $current_user->user_email . '<br />';
echo 'User first name: ' . $current_user->user_firstname . '<br />';
echo 'User last name: ' . $current_user->user_lastname . '<br />';
echo 'User display name: ' . $current_user->display_name . '<br />';
echo 'User ID: ' . $current_user->ID . '<br />';
?>
The output is:
Username:
User email:
User first name:
User last name:
User display name:
User ID:
Have you tried to go with the “Safe usage” alternative given in the commented section?
I honestly don’t have any experience with
wp_get_current_user()
, since I never use it, but anyhow, this ought to work:wp_get_current_user()
should do the same, as it is nothing but a wrapper for the first two lines above, nonetheless, the above has got to work.You can set the
wp_get_current_user()
as a variable to easily access it in your function or page:$current_user = wp_get_current_user();
Example:
Also, it’s important to make sure this is all being done after
init
to avoid blank output.This is how you can get current user:
After that, you can use
$current_user->ID
where you want.Example: