Top kommentelők
Vannak pluginek a top kommentelők kiíratásához, de meg lehet oldani sablonban is.
A functions.php-ba:
function top_comment_authors($amount = 10){
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 .= "<li>".$result->comment_author."</li>";
}
$output .= "</ul>";
echo $output;
}
Kiíratása a sablonban:
<?php top_comment_authors(10); ?>
A 10 a kommentelők száma, természetesen változtatható.
További lehetőségek a fenti kód kiegészítésére:
$result->comment_author_email (kommentelő email címe - nem javasolt kiíratni)
$result->comments_count (kommentelő hozzászólásainak száma)
$result->comment_author_url (kommentelő weboldala)