样式PHP代码WordPress



如何以白色文本输出以下内容?跨越?div吗?

<?php global $current_user;
  get_currentuserinfo();
  echo 'Welcome, ' . $current_user->user_firstname . "n";
?>

Try

echo 'Welcome,<span class="white-text">' . $current_user->user_firstname . "</span>n";

css

.white-text{
 color:white;
}

可以使用span和div

相关内容

  • 没有找到相关文章

最新更新