评论是可以让人们讨论关于生活工作等的事情,在 WordPress 上显示近期评论是一个非常不错的主意,你能从读者哪里掌握更多关于文章的反馈,读者也能将他们精彩的评论展现在你的 WordPress 网站上,两全其美的事情,何乐而不为?

我们知道 WordPress 官方小工具中自带的就有近期评论,但是 WordPress 自带的近期评论是显示的文章标题,而非人们留下的评论本事,当然,也有许多这样的插件,但是插件多了毕竟不是一件好事,会影响网站的速度不是吗?

首先,将下面的代码添加到您的当前主题的 functions.php 文件中:

  1. function bg_recent_comments($no_comments = 5, $comment_len = 80, $avatar_size = 48) {
  2.   $comments_query = new WP_Comment_Query();
  3.     $comments = $comments_query->query( array( 'number' => $no_comments ) );
  4.     $comm = '';
  5.     if ( $comments ) : foreach ( $comments as $comment ) :
  6.         $comm .= '<li>' . get_avatar( $comment->comment_author_email, $avatar_size );
  7.         $comm .= '<a class="author" href="' . get_permalink( $comment->post_ID ) . '#comment-' . $comment->comment_ID . '">';
  8.         $comm .= get_comment_author( $comment->comment_ID ) . ':</a> ';
  9.         $comm .= '<p>' . strip_tagssubstr( apply_filters( 'get_comment_text', $comment->comment_content ), 0, $comment_len ) ) . '</p></li>';
  10.     endforeachelse :
  11.         $comm .= 'No comments.';
  12.     endif;
  13.     echo $comm;
  14. }

您可以在第一行设置适合你的评论条数,最长评论字数限制,以及 gravatar 头像尺寸长度等等。

然后,添加下面的代码到您想要显示最近的评论在您的 WordPress 主题的任何位置

  1. <div class="widget recent-comments">
  2. <h3>Recent Comments</h3>
  3. <?php bg_recent_comments(); ?>
  4. </div>

最后你也可以添加下面的 CSS 到你的 style.css 文件中:

  1. .recent-comments { list-stylenonefont-size12pxcolor#485358; }
  2. .recent-comments li { overflowhiddenpadding20px 0; border-top1px dotted #DADEE1; }
  3. .recent-comments li:first-child { border: 0 none; }
  4. .recent-comments img { floatleftmargin-right8px; }
  5. .recent-comments a { displayblockmargin-top10pxpadding-top10px; }