评论有关联作者。
在一个名为“私人评论”的部分中,查询属于当前帖子的所有评论,其中wp\\u Comments->comment\\u author\\u email等于当前用户的电子邮件。
签出wp\\U comments表。它有15个左右的字段,您可以在显示注释时过滤这些字段。
编辑:代码如下所示:
$comment_array = get_approved_comments($post->ID);
$current_user = wp_get_current_user();
foreach($comment_array as $comment){
if ($comment->comment_author_email == $current_user->user_email) {
echo $comment->comment_content ;
}
}
您可以循环浏览当前帖子的评论列表,并按作者电子邮件进行筛选。