Display current user info
-
Hi Antti,
Great plugin, exactly what I was looking for (If i can manage to solve my current problem).
I’d like users to be able to download their info in pdf format. So I replaced <?php the_content(); ?> with the following:
<?php $current_user = wp_get_current_user();
echo ‘Username: ‘ . $current_user->user_login . ‘
‘;
echo ‘User email: ‘ . $current_user->user_email . ‘
‘;
echo ‘User first name: ‘ . $current_user->user_firstname . ‘
‘;
echo ‘User last name: ‘ . $current_user->user_lastname . ‘
‘;
echo ‘User display name: ‘ . $current_user->display_name . ‘
‘;
echo ‘User ID: ‘ . $current_user->ID . ‘
‘;
?>But somehow the user info just wont show up on the PDF. can you help please?
Thanks!
- The topic ‘Display current user info’ is closed to new replies.