Get_commentsの結果をすべての投稿からの最新のコメントだけに制限する方法はありますか?
get_comments( array( 'number' => '1') );
http://codex.wordpress.org/Function_Reference/get_comments を参照してください。
<?php $comments = get_comments(array( 'number' => 1, 'post_id' => get_the_ID() )); ?>
ループに入っていない場合は、IDを指定する必要があります
出典: http://codex.wordpress.org/Function_Reference/get_comments