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

Ale*_*xey 3 avatar drupal-7

我想知道如何在Drupal 7中显示用户头像.我想以完整大小和缩略图显示头像.

Paw*_*iel 9

您可以使用以下内容:

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