我正在使用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;
答案 0 :(得分:0)
我正在使用Bootstrap构建一个WordPress主题。
这对我有用。
<?php echo get_avatar( $comment, 50, '', '', $args = array( 'scheme' => 'https', 'class' => 'mr-3' ) ); ?>