0

我有一个列出作者评论的代码。我在 author.php 中使用它。它完美地列出了评论,但如果作者没有评论,它会显示其他作者的评论链接。

编码

<?php
$args = array(
    'user_id' => get_the_author_meta('ID'),
    'number' => 5, // how many comments to retrieve
    'status' => 'approve'
    );

$comments = get_comments( $args );

if ( $comments )
{

    foreach ( $comments as $c )
    {
    $output.= '<li">';
    $output.= '<a href="'.get_comment_link( $c->comment_ID ).'">';
    $output.= get_the_title($c->comment_post_ID);

    $output.= "</a></li>\n";
    }
    echo $output;
} else { echo "There is no comment yet.";}
?>

如果作者没有评论,我想在这里查看:else { echo "There is no comment yet.";}

4

2 回答 2

0

你的代码看起来不错。您确定 get_the_author_meta('ID') 函数返回正确的值吗?

于 2018-03-24T11:41:40.667 回答
0

我通过更改来修复它: 'user_id' => get_the_author_meta('ID'),

我将其更改为: 'author_email' => $curauth->user_email,

于 2018-03-24T12:48:09.217 回答