ワードプレスで特定のページや記事などに違うページのコメントを表示させたい場合に使用できる。
<ul> <?php $comments = get_comments(array('status' => 'approve' ,'number' => 3 , 'post_id' => 80)); foreach($comments as $comment): $post = get_post($comment->comment_post_ID); ?> <li><?php comment_date('m/d'); ?> <?php comment_author_link(); ?> <?php comment_text(); ?></li> <?php endforeach; ?> </ul>
post_idで取得したい記事やページのIDを指定する。
numberで数を指定。