Добавление этого фрагмента в functions.php вашей темы WordPress позволит Вам отобразить список лучших пользователей комментаторов на Вашем сайте. Данный сниппет wordpress необходимо устанавливать в файл function.php .
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
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 .= "<li>".$result->comment_author."</li>"; } $output .= "</ul>"; echo $output; } |
Отобразить авторов Вы можете с помощью данного кода:
1 |
<? top_comment_authors(); ?> |
Если Вы ещё не совсем знаете как работать с WordPress , смотрите видео уроки WordPress или Вам может помочь литература WordPress .
0 комментарий