Home › Forums › Front-end Issues › How to get the Select Choice Value › Reply To: How to get the Select Choice Value
Hi,
I figured it out. Should be like this:
$choices = get_field('product_information');
// loop
if( $choices): ?>
<ul class='prod-row'>
<?php foreach( $choices as $choice): ?>
<li> <img src="<?php echo get_stylesheet_directory_uri(); ?>/imgs/products/<?php echo $choice ?>.svg " /> </li>
<?php endforeach; ?>
</ul>
<?php endif;
I hope that helps someone.
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.