Home › Forums › Add-ons › Flexible Content Field › Count taxonomy rows in flexible content › Reply To: Count taxonomy rows in flexible content
Hi @jonathan, I found the solution.
Im not sure why this would break the count();
.
Do you know why?
This is what I had:
if ( have_rows('repeater') ) :
$counter = get_sub_field('repeater');
// $counter = get_field('repeater'); if not in Flexible Content
while ( have_rows('repeater') ) : the_row();
$count = count( $counter );
echo $count;
// HTML goes here
endwhile;
endif;
And this is what works:
$counter = get_sub_field('repeater');
// $counter = get_field('repeater'); if not in Flexible Content
if ( have_rows('repeater') ) :
while ( have_rows('repeater') ) : the_row();
$count = count( $counter );
echo $count;
// HTML goes here
endwhile;
endif;
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.