Company Logo
Hi
Just wondering how FXtender calls the "Company Logo"? I'm trying to create a directory and I'd like the company logo to appear. I've successfully called the avatar (get_avatar)...but I can't figure out how this plugin replaces the avatar with the persistent company logo.
<ul>
<?php
$blogusers = get_users('role=job_lister');
foreach ($blogusers as $user) {
echo '<li>';
echo "<a href='http://yoursite/author/" . $user->user_login . "'>$user->nickname</a>";
echo '</li>';
}
?>
</ul>