Home › Forums › Add-ons › Flexible Content Field › Flexible Content "key" › Reply To: Flexible Content "key"
Hi @frysteen
The data is saved to the database using a numeric counter as the $key.
So you could achieve this on the front end by introducing a counter like so:
<?php
$i = -1;
while( have_rows() ) {
the_row();
$i++;
if( get_row_layout() == 'paragraph' ):
echo "key={$i}";
the_sub_field('text');
elseif( get_row_layout() == 'download' ):
echo "key={$i}";
$file = get_sub_field('file');
endif;
}
?>
I hope that helps.
Thanks
E
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.