如题,目前在问题标题的右侧可以调用回复的用户头像,处于某种布局的需要,我希望能够在文章的右侧也能够调用类似的用户头像,可以是对该文章进行评论的用户,也可以是对该文章进行点赞投票的用户。还请指教!
问题列表右侧调用的代码如下:
<?php if (is_array($val['answer_users'])) { ?>
<div class="pull-right hidden-xs contribute">
<span class="pull-right text-color-999"><?php _e('贡献'); ?></span>
<?php foreach ($val['answer_users'] AS $answer_user) { ?>
<a class="aw-user-name" data-id="<?php echo $answer_user['uid']; ?>" href="people/<?php echo $answer_user['url_token']; ?>" rel="nofollow"><img src="<?php echo get_avatar_url($answer_user['uid'], 'mid'); ?>" alt="" /></a>
<?php } ?>
</div>
阅读全文
收起全文