如何按評論數量顯示前100名評論者

藏色散人
發布: 2019-12-14 14:19:11
轉載
1974 人瀏覽過

下面由WordPress建站教學專欄給大家介紹按評論數量顯示前100名評論者的方法,希望對需要的朋友有所幫助!

如何按評論數量顯示前100名評論者

如想看看自己部落格上哪位博友的留言留言最多及最後的留言時間,以下一段程式碼會幫你實現這個功能。

可以將下面程式碼新增至目前主題functions.php:

function top_comment_authors($amount = 100) {
    global $wpdb;
        $prepared_statement = $wpdb->prepare(
        'SELECT
        COUNT(comment_author) AS comments_count, comment_author, comment_author_url, MAX( comment_date ) as last_commented_date
        FROM '.$wpdb->comments.'
        WHERE comment_author != "" AND comment_type = "" AND comment_approved = 1
        GROUP BY comment_author
        ORDER BY comments_count DESC, comment_author ASC
        LIMIT %d',
        $amount);
    $results = $wpdb->get_results($prepared_statement);
    $output = &#39;<ul class="top-comments">&#39;;
    foreach($results as $result) {
        $output .= &#39;<li class="top-comment-author"><strong> <a href="&#39;.$result->comment_author_url.&#39;" target="_blank" rel="external nofollow">&#39;.$result->comment_author.&#39;</a></strong> 共&#39;.$result->comments_count.&#39; 条评论,最后评论 &#39;.human_time_diff(strtotime($result->last_commented_date)).&#39;前</li>&#39;;
    }
    $output .= &#39;</ul>&#39;;
    echo $output;
}
登入後複製

呼叫程式碼:

<?php top_comment_authors(100); ?>
登入後複製

將程式碼新增至WordPress主題模板適當位置即可,其中的數字100可以控制顯示數量。

以上是如何按評論數量顯示前100名評論者的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:zmingcx.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!