Support

Account

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;