WordPress - get_avatar添加自定义类

时间:2018-04-03 00:40:11

标签: php wordpress css3

我正在使用get_avatar函数来显示用户的头像。

I cannot get any output from the $args parameter.

外,函数中的每个参数都有效

我只是想在用户的头像中添加一个类。我在这里咨询了get_avatar手抄本和其他答案,但看不出我做错了什么。

$user_id = get_current_user_id();
$user_avatar = get_avatar($user_id, 35, '', '', array('class' => 'border-circle'));    
echo $user_avatar;

1 个答案:

答案 0 :(得分:0)

我正在使用Bootstrap构建一个WordPress主题。

这对我有用。

<?php echo get_avatar( $comment, 50, '', '', $args = array( 'scheme' => 'https', 'class' => 'mr-3' ) ); ?>