Сортировка по комментариям

Скачал плагин, которой на главной странице меняет сортировку, и выводит посты в зависимости от даты последнего комментария.

Но выводится только 1 последний комментарий. Как сделать 4 последних?

function sbc_displayLastComment($content){
    if(is_home()&&!$_REQUEST['kill_sbc']):
        global $wpdb,$tablecomments,$id;

        $comments = $wpdb->get_results("SELECT comment_author,comment_content FROM $tablecomments WHERE comment_post_ID = '$id' AND comment_approved = '1' ORDER BY comment_date DESC LIMIT 1");

        if ($comments)
            $content.=
"
<h3>Last reply:</h3>
<p>".$comments[0]->comment_author.": ".$comments[0]->comment_content."</p>
";
        $content.=
'
<p><span class="meta"><a href="'.get_comments_link().'">View all replies</a> | <a href="'.get_permalink().'#commentform">Reply to this</a></span></p>
';
    endif; // is home
    return $content;
} // end sbc_displayLastComment
Anonymous
Отправить
Ответ на: