댓글 수 기준으로 상위 100명의 댓글 작성자를 표시하는 방법

藏色散人
풀어 주다: 2019-12-14 14:19:11
앞으로
1974명이 탐색했습니다.

다음 WordPress Website BuildingTutorial 칼럼에서 댓글 수에 따라 상위 100명의 댓글 작성자를 표시하는 방법을 소개하겠습니다. 필요한 친구들에게 도움이 되길 바랍니다!

댓글 수 기준으로 상위 100명의 댓글 작성자를 표시하는 방법

블로그에서 가장 많은 댓글을 남긴 블로거와 마지막 댓글 시간을 확인하려면 다음 코드를 사용하여 이 기능을 달성할 수 있습니다.

현재 테마 function.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 학습자의 빠른 성장을 도와주세요!