ACF 리피터 출력의 총 행 수를 카운트하는 방법 질문:ACF 리피터필드의 출력 행은 어떻게 카운트합니까? 목표: 행이 1개뿐일 때 css 클래스에서 출력을 다르게 하는 것과 여러 행일련의 행은 여러 개입니다. 내 코드: if( have_rows('testimonials')) { $counter = 0; $numtestimonials = ''; //loop thru the rows while ( have_rows('testimonials') ){ the_row(); $counter++; if ($counter < 2) { $numtestimonials = 'onlyone'; } echo ''; // bunch of output here echo ''; } } 여기서의 방법은 첫 번째 행에서 카운트가 2보..