get current user not working
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: global $current_user; echo ‘Username: ‘ . $current_user->user_login . ‘<br />’; echo ‘User email: ‘ . $current_user->user_email . ‘<br />’; echo ‘User … Read more