我已经修改了循环。php文件中添加一些注释内容。我想展示一个链接上的评论,这个链接运行得很好。现在我把作者的头像放进去,让评论更详细。所以我的代码是这样的。它确实显示默认的头像,但应该显示我的图像,而不是它。
$comments = get_comments( array(
\'post_id\' => $post->ID,
\'number\' => \'1\'
) );
foreach ( $comments as $comment ) {
echo get_avatar( get_the_author_meta( \'ID\'), 32 );
echo $comment->comment_author . \' says: \';
echo \'<hr />\';
echo $comment->comment_content;
}