How do I display logged-in username IF logged-in?

I’m working on creating some text that says ‘Login’ to users that are not logged in, and the user’s username or display name when logged in.

It seems like it should be an easy problem to solve, and I’ve found the following two bits of code on the wordpress codex that each do half of what I am looking for, but I haven’t figured out how to combine them (without breaking the site).

Is this the correct direction, or way off base?

To check if the user is logged in and display something different depending:

<?php if ( is_user_logged_in() ) {
    echo '{username code here}';
} else {
    echo 'Login';
}
?>

To get and display the current user’s information:

<?php global $current_user;
wp_get_current_user();
echo 'Username: ' . $current_user->user_login . "n";
echo 'User display name: ' . $current_user->display_name . "n";
?>

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

This seems to do what you need.

<?php global $current_user; wp_get_current_user(); ?>
<?php if ( is_user_logged_in() ) { 
 echo 'Username: ' . $current_user->user_login . "n"; echo 'User display name: ' . $current_user->display_name . "n"; } 
else { wp_loginout(); } ?>


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x