web-dev-qa-db-ja.com

Get_commentsを使用して、投稿ごとに1つのコメントのみを取得

Get_commentsの結果をすべての投稿からの最新のコメントだけに制限する方法はありますか?

2
user23068
get_comments( array( 'number' => '1') );

http://codex.wordpress.org/Function_Reference/get_comments を参照してください。

1
Dom
<?php $comments = get_comments(array( 'number' => 1, 'post_id' => get_the_ID() )); ?>

ループに入っていない場合は、IDを指定する必要があります

出典: http://codex.wordpress.org/Function_Reference/get_comments

1
Mridul Aggarwal