Show Username of Logged-in User
If you want to show the username of a logged-in user in some place other than the meta sidebar widget that comes pre-loaded with WordPress, you can do so by placing the following code anywhere in your WordPress theme, and it will accomplish this simple task: <?php global $current_user; if ( isset($current_user) ) { echo… Read More »