从其他作者的帖子 - WordPress获取我的所有评论

时间:2015-10-12 02:47:36

标签: wordpress

我有问题从其他作者的帖子中得到我的所有评论并在我自己的帖子中显示。 我做了一个循环来捕获其他作者的所有帖子并成功显示在我自己的帖子中。在每篇文章的下方,我想显示我的所有评论,并仅针对我的评论过滤,但结果显示其他作者的所有评论。

以下是我用来捕获循环单个模板中所有注释的代码:

exist

1 个答案:

答案 0 :(得分:0)

  

尝试功能:get_the_author_meta()

$MyEmail =  get_the_author_meta( 'user_email',$post->post_author);

$args = array(
        'post_id' => $post->ID,                                        
        'author_email' => $MyEmail
);
$comments = get_comments($args);
foreach($comments as $comment) :                    
    echo   ($comment->comment_content);
endforeach;
相关问题