Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to use my own function for showing the Top Commentators on wordpress, there's a similar question on here, but the problem is that I Can't get the avatar to show, see, i'm using a plug in so people can show their Tumblr Avatar when they leave a comment, but when I use the following code, it does not show their tumblr avatar, it shows the default wordpress avatar (mystery man), how can i get to show the avatar that it's shown in the comments? Also i use my own code to show recent comments and this one does show the avatar from their tumblr.

function top_comment_authors($amount = 5){

    global $wpdb;

    $results = $wpdb->get_results('
        SELECT
            COUNT(comment_author_email) AS comments_count, comment_author_email, comment_author, comment_author_url
        FROM
            '.$wpdb->comments.'
        WHERE
            comment_author_email != "" AND comment_type = "" AND comment_approved = 1
        GROUP BY
            comment_author_email
        ORDER BY
            comments_count DESC, comment_author ASC
        LIMIT '.$amount

    );
    $output = "<ul>";
    foreach($results as $result){
    }
    $output .= "</ul>";

    $output .= "<li>".get_avatar($result->comment_author_email, 45).' '.(($result->comment_author_url) ? "<a href='".$result->comment_author_url."'>" : "").$result->comment_author.(($result->comment_author_url) ? "</a>" : "")."</li>";

    echo $output;

}

the code i'm using for recent comments is the following, this one works.

$query = "SELECT * from $wpdb->comments WHERE comment_approved= '1'
ORDER BY comment_date DESC LIMIT 32 ,20";
$comments = $wpdb->get_results($query);

if ($comments) {
echo '<ul>';
foreach ($comments as $comment) {
$url = '<a href="'. get_permalink($comment->comment_author_url).$comment->comment_author_url .'" title="'.$comment->comment_author .' | '.get_the_title($comment->comment_post_ID).'">';
echo $url;
echo get_avatar( $comment->comment_author_email, 40);
echo '</a>';
}
echo '</ul>';
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.