Listar comentarios

1
2
3
4
5
6
<?php
$my_comments = get_comments('number=4');
foreach( $my_comments as $comment ):
?>
li><a href="<?php echo get_permalink($comment->comment_post_ID); ?>/#comment-<?php echo $comment->comment_ID; ?>"><strong><?php echo $comment->comment_author; ?>disse:</strong><?php echo $comment->comment_content; ?></a></li>
<?php endforeach; ?>