Home › Forums › Add-ons › Flexible Content Field › Output checkbox items in an ordered list › Reply To: Output checkbox items in an ordered list
made a couple minor changes to your code
<?php
// check if the flexible content field has rows of data
if( have_rows('flexible_content') ):
// loop through the rows of data
while ( have_rows('flexible_content') ) : the_row();
if( get_row_layout() == 'social_proof_logos' ):
$field = get_sub_field_object('social_proof');
$choices = $field['choices'];
$value = the_sub_field('social_proof');
if( $value ) :
echo '<ul>';
foreach( $value as $v ):
echo '<li>';
echo $choices[ $v ];
echo '</li>';
endforeach;
echo '</ul>';
endif;
endif;
endwhile;
else :
// no layouts found
endif;
// End
?>
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.