How do I include hello person avatar in code?
$array = ssi_recentPosts(5, null, null, 'array');
echo '
<div class="p-4 space-y-4">
<ul class="sonileti">';
foreach ($array as $widgetposts)
echo '
<li class="block-row">
<div class="contentRow">
<span class="d-block text-dark text-capitalize text-truncate mw-150p">', $widgetposts['link'], '</span>
', $txt['by'], ' ', $widgetposts['poster']['link'], ' (', $widgetposts['board']['link'], ')
</div>
</li>';
echo '
</ul>
</div>