如何在Drupal 7中显示用户头像?

发布于 2024-11-27 10:52:22 字数 51 浏览 1 评论 0原文

我想知道如何在 Drupal 7 中显示用户头像。 我想以全尺寸和缩略图形式显示头像。

I'd like to know how to display a user avatar in Drupal 7.
I want to display the avatar in full size and as the thumbnail.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

薔薇婲 2024-12-04 10:52:23

确保在帐户设置 (admin/config/people/accounts) 中启用用户配置文件,然后您可以使用 $user_profile 在模板中显示它们:-

http://api.drupal.org/api/drupal/modules--node--node.tpl.php/7

的user-picture.tpl.php 模板将允许您覆盖它的输出方式。

Make sure you enable User profiles in the account settings (admin/config/people/accounts) and then you can display them in templates using $user_profile:-

http://api.drupal.org/api/drupal/modules--node--node.tpl.php/7

The user-picture.tpl.php template will let you override how it is output.

我一直都在从未离去 2024-12-04 10:52:22

你可以使用类似的东西:

$user_item = user_load_by_name($username); // or user_load( $user->uid )
print theme('user_picture', array('account' =>$user_item));

You can use something like:

$user_item = user_load_by_name($username); // or user_load( $user->uid )
print theme('user_picture', array('account' =>$user_item));
萌辣 2024-12-04 10:52:22

当我使用时,用户图片链接到用户个人资料。我已将用户图像设置为显示为缩略图。我想将用户图片链接到全尺寸图片并使用 lightboxII 显示它们。这似乎是一项非常简单的任务,但我还不知道如何去做。

When I use the user picture is linked to the user profile. I have set my user images to be displayed as thumbnails. I'd like to link the user picture to the full sized picture and display them using lightboxII. It seems to be a very easy task but I couldn't figure out yet how to do it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文