php comments_template(); のカスタマイズ
上記のcus_comment関数で、1つ目のコメントだけ表示したくない場合は
//先頭のコメントはスキップ $post_id = get_the_ID(); $getcomment_arg = 'post_id=' . strval($post_id) . '&order=ASC&number=1'; $comments = get_comments( $getcomment_arg ); if( $comment->comment_ID == $comments[0]->comment_ID ){ return; }
といれるといける