WordPress获取评论用户的信息

前端之家收集整理的这篇文章主要介绍了WordPress获取评论用户的信息前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

上一篇文章中,我们输出评论用户头像列表,那么,我们能不能再输出一些评论者的信息呢?比如:某读者的最后评论时间,总的评论文章,最后评论内容,在本站总的评论数等,通过下面的代码您可以轻松实现:

文章

wordpress获取文章评论人数并输出评论用户…" target="_blank" style="font-size:15px">wordpress获取文章评论人数并输出评论用户列表

通过wordpress我们可以轻松获取文章总的评论数,同时在文章中通过列表展示出来,最近在制作评论模板的时候我就在想,能…

get_results(
    "SELECT comment_ID as author_count FROM $wpdb->comments WHERE comment_author_email = '$comment_author_email' "));
    return $comment_count;
}
//获取指定用户最后评论内容
function author_last_comment_content($comment_author_emails){
$args = array(
    'author_email' =>$comment_author_emails,'number' => '1'
);
$comments = get_comments($args);
foreach($comments as $comment) :
    return $comment->comment_content;
endforeach;
}
//获取指定用户最后时间
function author_last_comment_time($comment_author_emails){
$args = array(
    'author_email' =>$comment_author_emails,'number' => '1'
);
$comments = get_comments($args);
foreach($comments as $comment) :
    return $comment->comment_date_gmt;
endforeach;
}

具体的调用方法大家自己研究吧!

原文链接:https://www.f2er.com/wordpress/67619.html

猜你在找的wordpress相关文章