現在ログインしているユーザーの名が表示された後に空白を取得するにはどうすればよいですか? 他の何かにぶつかっているので、いくつかのスペースが必要です。
<?php
if ( is_user_logged_in() ) {
global $current_user;
get_currentuserinfo();
echo '<span class="white-text">Welcome, ' .$current_user->user_firstname . "</span>\n";}
?>