一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

wordpress中首页文章下显示评论内容

时间:2013-06-03 编辑:简简单单 来源:一聚教程网

首页文章下面显示若干条的评论内容,包括作者头像、评论时间、评论内容等,没有直接回复的功能,具体代码如下:

 代码如下 复制代码
   $args = array(
    'status' => 'approved',
    'number' => '5',
    'post_id' => get_the_ID()
    );
    $comments = get_comments($args);
    foreach($comments as $comment) :
        echo( get_avatar($comment->comment_author_email,64) . $comment->comment_author . '
' . $comment->comment_content );
    endforeach;

代码放在首页循环里就可以了。

热门栏目