特定ページのコメント内容を取得して表示

<ul>
  <?php
    $comments = get_comments(
      array(
        'status' => 'approve',
        'number' => 10,
        'post_id' => 投稿ID
      )
    );
    foreach($comments as $comment):
    $post = get_post($comment->comment_post_ID);
  ?>
  <li>
    <dl>
      <dt>投稿日</dt>
      <dd><?php comment_date('Y/m/d'); ?></dd>
      <dt>投稿者</dt>
      <dd><?php comment_author(); ?></dd>
      <dt>コメント内容</dt>
      <dd><?php comment_text(); ?></dd>
    </dl>
  </li>
  <?php endforeach; ?>
</ul>